結果

問題 No.2277 Honest or Dishonest ?
ユーザー ntudantuda
提出日時 2023-04-23 10:36:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 528 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 166,784 KB
最終ジャッジ日時 2024-11-08 06:55:03
合計ジャッジ時間 15,643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 335 ms
122,880 KB
testcase_04 AC 415 ms
147,328 KB
testcase_05 AC 170 ms
86,912 KB
testcase_06 AC 285 ms
109,952 KB
testcase_07 AC 259 ms
107,904 KB
testcase_08 AC 140 ms
85,632 KB
testcase_09 AC 269 ms
100,736 KB
testcase_10 AC 205 ms
97,920 KB
testcase_11 AC 139 ms
84,480 KB
testcase_12 AC 166 ms
87,936 KB
testcase_13 AC 316 ms
120,320 KB
testcase_14 AC 154 ms
89,088 KB
testcase_15 AC 144 ms
84,992 KB
testcase_16 AC 245 ms
107,392 KB
testcase_17 AC 183 ms
92,288 KB
testcase_18 AC 380 ms
119,168 KB
testcase_19 AC 369 ms
135,808 KB
testcase_20 AC 281 ms
106,752 KB
testcase_21 AC 234 ms
104,448 KB
testcase_22 AC 307 ms
126,464 KB
testcase_23 AC 240 ms
105,984 KB
testcase_24 AC 277 ms
113,664 KB
testcase_25 AC 239 ms
101,248 KB
testcase_26 AC 108 ms
78,976 KB
testcase_27 AC 165 ms
95,488 KB
testcase_28 AC 156 ms
86,016 KB
testcase_29 AC 192 ms
89,856 KB
testcase_30 AC 162 ms
91,008 KB
testcase_31 AC 235 ms
106,496 KB
testcase_32 AC 183 ms
88,832 KB
testcase_33 AC 427 ms
138,240 KB
testcase_34 AC 310 ms
121,472 KB
testcase_35 AC 109 ms
79,488 KB
testcase_36 AC 173 ms
95,616 KB
testcase_37 AC 263 ms
112,128 KB
testcase_38 AC 118 ms
82,048 KB
testcase_39 AC 148 ms
89,856 KB
testcase_40 AC 107 ms
78,336 KB
testcase_41 AC 276 ms
120,192 KB
testcase_42 AC 241 ms
107,264 KB
testcase_43 AC 297 ms
119,680 KB
testcase_44 AC 487 ms
136,576 KB
testcase_45 AC 528 ms
136,832 KB
testcase_46 AC 512 ms
166,784 KB
testcase_47 AC 505 ms
136,704 KB
testcase_48 AC 469 ms
126,720 KB
testcase_49 AC 355 ms
123,520 KB
testcase_50 AC 294 ms
108,544 KB
testcase_51 AC 442 ms
126,720 KB
testcase_52 AC 334 ms
117,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100050)

MOD = 998244353
N, Q = map(int, input().split())
ABC = [list(map(int, input().split())) for _ in range(Q)]
E = [[] for _ in range(N)]
for a, b, c in ABC:
    E[a - 1].append((b - 1, c))
    E[b - 1].append((a - 1, c))
C = [-1] * N

def dfs(x):
    for y, c in E[x]:
        if C[y] == -1:
            C[y] = C[x] ^ c
            dfs(y)
        else:
            if C[y] != C[x] ^ c:
                print(0)
                exit()

cnt = 0
for i in range(N):
    if C[i] == -1:
        C[i] = 0
        cnt += 1
        dfs(i)
print(pow(2, cnt, MOD))
0