結果

問題 No.2277 Honest or Dishonest ?
ユーザー ntudantuda
提出日時 2023-04-23 10:40:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-11-08 06:54:22
合計ジャッジ時間 13,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,760 KB
testcase_01 AC 48 ms
53,760 KB
testcase_02 AC 48 ms
53,888 KB
testcase_03 AC 290 ms
97,792 KB
testcase_04 AC 307 ms
99,456 KB
testcase_05 AC 184 ms
87,040 KB
testcase_06 AC 242 ms
93,952 KB
testcase_07 AC 228 ms
91,520 KB
testcase_08 AC 190 ms
86,144 KB
testcase_09 AC 244 ms
92,288 KB
testcase_10 AC 184 ms
87,296 KB
testcase_11 AC 137 ms
80,256 KB
testcase_12 AC 169 ms
85,376 KB
testcase_13 AC 254 ms
91,776 KB
testcase_14 AC 184 ms
88,960 KB
testcase_15 AC 170 ms
85,376 KB
testcase_16 AC 218 ms
91,136 KB
testcase_17 AC 160 ms
83,968 KB
testcase_18 AC 286 ms
98,176 KB
testcase_19 AC 295 ms
99,072 KB
testcase_20 AC 247 ms
93,952 KB
testcase_21 AC 202 ms
88,064 KB
testcase_22 AC 214 ms
91,520 KB
testcase_23 AC 247 ms
94,848 KB
testcase_24 AC 221 ms
90,496 KB
testcase_25 AC 246 ms
94,080 KB
testcase_26 AC 158 ms
83,200 KB
testcase_27 AC 153 ms
81,536 KB
testcase_28 AC 173 ms
85,504 KB
testcase_29 AC 209 ms
89,856 KB
testcase_30 AC 156 ms
82,432 KB
testcase_31 AC 207 ms
91,904 KB
testcase_32 AC 200 ms
88,704 KB
testcase_33 AC 281 ms
98,560 KB
testcase_34 AC 261 ms
98,944 KB
testcase_35 AC 134 ms
80,896 KB
testcase_36 AC 184 ms
84,608 KB
testcase_37 AC 252 ms
96,256 KB
testcase_38 AC 124 ms
79,616 KB
testcase_39 AC 139 ms
79,744 KB
testcase_40 AC 137 ms
80,768 KB
testcase_41 AC 276 ms
99,584 KB
testcase_42 AC 208 ms
92,288 KB
testcase_43 AC 289 ms
100,224 KB
testcase_44 AC 363 ms
103,936 KB
testcase_45 AC 349 ms
103,680 KB
testcase_46 AC 351 ms
103,552 KB
testcase_47 AC 346 ms
103,680 KB
testcase_48 AC 356 ms
103,680 KB
testcase_49 AC 310 ms
100,480 KB
testcase_50 AC 285 ms
100,352 KB
testcase_51 AC 280 ms
100,480 KB
testcase_52 AC 297 ms
100,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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 bfs(x):
    q = deque([x])
    while q:
        x = q.popleft()
        for y, c in E[x]:
            if C[y] == -1:
                C[y] = C[x] ^ c
                q.append(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
        bfs(i)

print(pow(2, cnt, MOD))
0