정답 개수:
0
틀린 개수:
0
실행 실패 개수:
5
3827 82
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "/tmp/target/Main.py", line 3, in <module> n_list=int(sys.stdin.readline().split()) TypeError: int() argument must be a string, a bytes-like object or a real number, not 'list'
BAD 43
5041 34
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "/tmp/target/Main.py", line 3, in <module> n_list=int(sys.stdin.readline().split()) TypeError: int() argument must be a string, a bytes-like object or a real number, not 'list'
GOOD
4153893062 65054
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "/tmp/target/Main.py", line 3, in <module> n_list=int(sys.stdin.readline().split()) TypeError: int() argument must be a string, a bytes-like object or a real number, not 'list'
BAD 2