結果

問題 No.2277 Honest or Dishonest ?
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-04-21 22:58:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 559 ms / 2,000 ms
コード長 834 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 120,064 KB
最終ジャッジ日時 2024-11-08 06:40:37
合計ジャッジ時間 20,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 45 ms
52,736 KB
testcase_03 AC 446 ms
113,792 KB
testcase_04 AC 478 ms
114,080 KB
testcase_05 AC 238 ms
87,424 KB
testcase_06 AC 383 ms
103,040 KB
testcase_07 AC 320 ms
97,024 KB
testcase_08 AC 211 ms
85,760 KB
testcase_09 AC 346 ms
101,632 KB
testcase_10 AC 256 ms
91,776 KB
testcase_11 AC 171 ms
84,096 KB
testcase_12 AC 200 ms
86,400 KB
testcase_13 AC 436 ms
105,452 KB
testcase_14 AC 195 ms
87,680 KB
testcase_15 AC 209 ms
85,248 KB
testcase_16 AC 333 ms
97,792 KB
testcase_17 AC 189 ms
86,016 KB
testcase_18 AC 444 ms
116,096 KB
testcase_19 AC 470 ms
113,664 KB
testcase_20 AC 388 ms
105,444 KB
testcase_21 AC 316 ms
94,976 KB
testcase_22 AC 324 ms
101,888 KB
testcase_23 AC 383 ms
99,968 KB
testcase_24 AC 301 ms
100,224 KB
testcase_25 AC 342 ms
102,016 KB
testcase_26 AC 178 ms
82,944 KB
testcase_27 AC 224 ms
88,960 KB
testcase_28 AC 210 ms
85,760 KB
testcase_29 AC 258 ms
89,856 KB
testcase_30 AC 242 ms
90,880 KB
testcase_31 AC 374 ms
103,552 KB
testcase_32 AC 243 ms
88,960 KB
testcase_33 AC 432 ms
112,256 KB
testcase_34 AC 463 ms
112,976 KB
testcase_35 AC 150 ms
80,896 KB
testcase_36 AC 301 ms
99,840 KB
testcase_37 AC 421 ms
104,576 KB
testcase_38 AC 139 ms
77,696 KB
testcase_39 AC 179 ms
83,584 KB
testcase_40 AC 149 ms
80,384 KB
testcase_41 AC 515 ms
120,064 KB
testcase_42 AC 373 ms
103,340 KB
testcase_43 AC 540 ms
117,248 KB
testcase_44 AC 539 ms
119,552 KB
testcase_45 AC 542 ms
118,912 KB
testcase_46 AC 545 ms
117,120 KB
testcase_47 AC 525 ms
116,992 KB
testcase_48 AC 546 ms
119,552 KB
testcase_49 AC 541 ms
117,248 KB
testcase_50 AC 555 ms
119,552 KB
testcase_51 AC 551 ms
118,016 KB
testcase_52 AC 559 ms
118,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q = map(int,input().split())
e = [[] for i in range(n)]
mod = 998244353
ans = 1
for i in range(q):
    a,b,c = map(int,input().split())
    a,b = a-1,b-1
    e[a].append([b,c])
    e[b].append([a,c])


vis = [0]*n
id = 0
def search(u,c,id):
    dic = {}

    dic[u] = c
    vis[u] = id

    q = [u]
    ok = 1
    while q:
        now = q.pop()
        c = dic[now]
        for nex,nc in e[now]:
            
            judge = nc^c

            if nex in dic and dic[nex] != judge:
                ok = 0
            
            if vis[nex] == id:
                continue
            dic[nex] = judge
            vis[nex] = id
            q.append(nex)
    return ok


for u in range(n):
    if vis[u]:
        continue

    num = search(u,0,id+1) + search(u,1,id+2)
    ans *= num
    ans %= mod
    id += 2
print(ans)
        
0