Testcase AC (Beta)

제출 #46573

제출 정보

문제:AC
언어:Python 3
상태:실행 중
실행 시간:2473 ms

제출 결과

정답 개수:

0

틀린 개수:

0

실행 실패 개수:

10

제출 코드

찾은 반례

입력:

1
D
9
[6,9,9,9,6,7,8,8,11]

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 11, in <module> data = sys.stdin.readlines().split("\n") # 한 번에 입력받고 줄 단위로 분할 AttributeError: 'list' object has no attribute 'split'

정답 출력:

[9,9,9,6,7,8,8,11]

입력:

1
RDRR
9
[3,11,12,28,29,43,53,56,79]

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 11, in <module> data = sys.stdin.readlines().split("\n") # 한 번에 입력받고 줄 단위로 분할 AttributeError: 'list' object has no attribute 'split'

정답 출력:

[56,53,43,29,28,12,11,3]

입력:

3
RD
2
[82,82]
DRDR
6
[14,47,57,61,73,99]
DDDR
7
[9,10,11,8,8,7,10]

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 11, in <module> data = sys.stdin.readlines().split("\n") # 한 번에 입력받고 줄 단위로 분할 AttributeError: 'list' object has no attribute 'split'

정답 출력:

[82]
[47,57,61,73]
[10,7,8,8]