結果

問題 No.2277 Honest or Dishonest ?
ユーザー ああいいああいい
提出日時 2023-04-21 23:40:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-11-08 06:46:55
合計ジャッジ時間 13,060 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 267 ms
88,320 KB
testcase_04 AC 284 ms
90,368 KB
testcase_05 AC 164 ms
84,224 KB
testcase_06 AC 229 ms
85,760 KB
testcase_07 AC 207 ms
84,736 KB
testcase_08 AC 154 ms
83,840 KB
testcase_09 AC 219 ms
86,272 KB
testcase_10 AC 170 ms
80,768 KB
testcase_11 AC 125 ms
77,824 KB
testcase_12 AC 153 ms
79,232 KB
testcase_13 AC 254 ms
87,360 KB
testcase_14 AC 160 ms
81,792 KB
testcase_15 AC 159 ms
82,688 KB
testcase_16 AC 205 ms
84,608 KB
testcase_17 AC 142 ms
80,128 KB
testcase_18 AC 269 ms
89,856 KB
testcase_19 AC 279 ms
89,984 KB
testcase_20 AC 228 ms
86,144 KB
testcase_21 AC 198 ms
83,200 KB
testcase_22 AC 208 ms
85,120 KB
testcase_23 AC 229 ms
85,248 KB
testcase_24 AC 209 ms
84,736 KB
testcase_25 AC 221 ms
88,064 KB
testcase_26 AC 126 ms
81,280 KB
testcase_27 AC 149 ms
80,000 KB
testcase_28 AC 162 ms
82,816 KB
testcase_29 AC 182 ms
84,864 KB
testcase_30 AC 149 ms
81,024 KB
testcase_31 AC 189 ms
84,992 KB
testcase_32 AC 179 ms
84,352 KB
testcase_33 AC 267 ms
89,216 KB
testcase_34 AC 264 ms
88,832 KB
testcase_35 AC 120 ms
79,872 KB
testcase_36 AC 192 ms
84,224 KB
testcase_37 AC 237 ms
86,144 KB
testcase_38 AC 116 ms
77,312 KB
testcase_39 AC 139 ms
79,872 KB
testcase_40 AC 124 ms
79,360 KB
testcase_41 AC 264 ms
89,344 KB
testcase_42 AC 210 ms
85,504 KB
testcase_43 AC 290 ms
91,392 KB
testcase_44 AC 323 ms
92,800 KB
testcase_45 AC 326 ms
92,800 KB
testcase_46 AC 317 ms
92,800 KB
testcase_47 AC 318 ms
92,672 KB
testcase_48 AC 324 ms
92,544 KB
testcase_49 AC 283 ms
91,392 KB
testcase_50 AC 270 ms
91,392 KB
testcase_51 AC 259 ms
91,392 KB
testcase_52 AC 266 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N,Q = map(int,input().split())

P = 998244353
G = [[] for _ in range(N)]

for _ in range(Q):
    a,b,c = map(int,input().split())
    a -= 1
    b -= 1
    G[a].append((b,c))
    G[b].append((a,c))

ans = 1
mem = [-1] * N
for i in range(N):
    if mem[i] != -1:continue
    stack = []
    stack.append(i)
    mem[i] = 0
    while stack:
        now = stack.pop()
        for u,c in G[now]:
            if mem[u] == -1:
                mem[u] = mem[now] ^ c
                stack.append(u)
            else:
                if mem[u] != mem[now] ^ c:
                    print(0)
                    exit()
    ans = ans * 2 % P
print(ans)
0