結果

問題 No.2277 Honest or Dishonest ?
ユーザー ニックネームニックネーム
提出日時 2023-04-21 21:57:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 797 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,448 KB
最終ジャッジ日時 2024-11-08 06:32:08
合計ジャッジ時間 27,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 664 ms
34,432 KB
testcase_04 AC 657 ms
35,712 KB
testcase_05 AC 269 ms
22,528 KB
testcase_06 AC 562 ms
30,080 KB
testcase_07 AC 469 ms
26,880 KB
testcase_08 AC 239 ms
21,888 KB
testcase_09 AC 434 ms
27,648 KB
testcase_10 AC 349 ms
22,528 KB
testcase_11 AC 165 ms
16,256 KB
testcase_12 AC 314 ms
21,504 KB
testcase_13 AC 646 ms
32,512 KB
testcase_14 AC 421 ms
24,064 KB
testcase_15 AC 237 ms
20,608 KB
testcase_16 AC 452 ms
26,496 KB
testcase_17 AC 219 ms
18,304 KB
testcase_18 AC 636 ms
34,176 KB
testcase_19 AC 645 ms
34,688 KB
testcase_20 AC 518 ms
29,568 KB
testcase_21 AC 481 ms
26,368 KB
testcase_22 AC 441 ms
26,752 KB
testcase_23 AC 655 ms
32,000 KB
testcase_24 AC 386 ms
25,472 KB
testcase_25 AC 481 ms
29,952 KB
testcase_26 AC 172 ms
19,328 KB
testcase_27 AC 310 ms
21,120 KB
testcase_28 AC 236 ms
20,480 KB
testcase_29 AC 346 ms
25,088 KB
testcase_30 AC 294 ms
20,864 KB
testcase_31 AC 497 ms
28,288 KB
testcase_32 AC 312 ms
23,936 KB
testcase_33 AC 640 ms
34,304 KB
testcase_34 AC 700 ms
35,328 KB
testcase_35 AC 113 ms
16,000 KB
testcase_36 AC 430 ms
25,984 KB
testcase_37 AC 676 ms
33,152 KB
testcase_38 AC 165 ms
15,616 KB
testcase_39 AC 223 ms
18,048 KB
testcase_40 AC 109 ms
15,104 KB
testcase_41 AC 729 ms
36,736 KB
testcase_42 AC 514 ms
29,056 KB
testcase_43 AC 785 ms
40,320 KB
testcase_44 AC 781 ms
40,448 KB
testcase_45 AC 787 ms
40,320 KB
testcase_46 AC 781 ms
40,320 KB
testcase_47 AC 791 ms
40,320 KB
testcase_48 AC 792 ms
40,192 KB
testcase_49 AC 797 ms
40,192 KB
testcase_50 AC 797 ms
40,192 KB
testcase_51 AC 795 ms
40,448 KB
testcase_52 AC 784 ms
40,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q = map(int,input().split())
adj = [[] for _ in range(n)]; mod = 998244353
for _ in range(q):
    a,b,c = map(int,input().split())
    adj[a-1].append((b-1,c)); adj[b-1].append((a-1,c))
ans = 1; f = [-1]*n
for i in range(n):
    if f[i]!=-1: continue
    ans = ans*2%mod; f[i] = 0; st = [i]
    while st:
        p = st.pop()
        for v,c in adj[p]:
            if f[v]==-1: f[v] = f[p]^c; st.append(v)
            elif f[v]!=f[p]^c: ans = 0
print(ans)
0