結果

問題 No.1023 Cyclic Tour
ユーザー chineristACchineristAC
提出日時 2020-10-08 16:39:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 423 bytes
コンパイル時間 1,578 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 96,256 KB
最終ジャッジ日時 2024-07-20 05:57:49
合計ジャッジ時間 19,159 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,712 KB
testcase_01 AC 45 ms
51,840 KB
testcase_02 AC 43 ms
51,584 KB
testcase_03 AC 43 ms
51,712 KB
testcase_04 AC 253 ms
87,936 KB
testcase_05 AC 214 ms
87,168 KB
testcase_06 AC 252 ms
87,680 KB
testcase_07 AC 253 ms
87,296 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 209 ms
86,272 KB
testcase_12 AC 195 ms
85,120 KB
testcase_13 AC 181 ms
83,712 KB
testcase_14 WA -
testcase_15 AC 195 ms
84,992 KB
testcase_16 AC 291 ms
87,168 KB
testcase_17 AC 310 ms
87,296 KB
testcase_18 AC 312 ms
87,168 KB
testcase_19 AC 288 ms
86,656 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 306 ms
88,320 KB
testcase_23 WA -
testcase_24 AC 314 ms
87,680 KB
testcase_25 AC 318 ms
88,192 KB
testcase_26 AC 327 ms
89,856 KB
testcase_27 AC 322 ms
89,344 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 339 ms
88,832 KB
testcase_34 AC 337 ms
87,552 KB
testcase_35 AC 356 ms
89,088 KB
testcase_36 WA -
testcase_37 AC 335 ms
89,216 KB
testcase_38 WA -
testcase_39 AC 336 ms
88,192 KB
testcase_40 AC 306 ms
88,192 KB
testcase_41 WA -
testcase_42 AC 343 ms
88,320 KB
testcase_43 WA -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 WA -
testcase_49 AC 329 ms
93,036 KB
testcase_50 WA -
testcase_51 AC 333 ms
91,392 KB
testcase_52 AC 333 ms
91,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
edge = [[] for i in range(N)]
for i in range(M):
    a,b,c = map(int,input().split())
    edge[a-1].append(b-1)
    if c==1:
        edge[b-1].append(a-1)

used = [False]*N
used[0] = True
def dfs(v,pv):
    for nv in edge[v]:
        if used[nv]:
            if nv!=pv:
                exit(print("Yes"))
        else:
            used[nv] = True
            dfs(nv,v)

dfs(0,-1)
print("No")
0