정답 개수:
0
틀린 개수:
0
실행 실패 개수:
10
1 4 2 2 2 3 1 3 4 1 4 1 1 1 2 1
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 31, in <module> negative_cycle = bf(1,n) File "Main.py", line 11, in bf if dist[e] > dist[s]+t: ~~~~~~~^~ TypeError: can only concatenate list (not "int") to list
NO
1 4 1 3 1 2 10000 2 3 1 3 4 1 4 2 1
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 31, in <module> negative_cycle = bf(1,n) File "Main.py", line 11, in bf if dist[e] > dist[s]+t: ^^^^^^^^^^^^^^^^^^^ TypeError: '>' not supported between instances of 'list' and 'int'
YES
1 6 3 7 1 1 42 5 1 27 6 5 15 1 5 76 6 1 10 5 2 30 6 6 8 1 5 50 1 5 79 5 5 79
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 31, in <module> negative_cycle = bf(1,n) File "Main.py", line 11, in bf if dist[e] > dist[s]+t: ~~~~~~~^~ TypeError: can only concatenate list (not "int") to list
YES