結果

問題 No.2277 Honest or Dishonest ?
ユーザー とりゐとりゐ
提出日時 2023-04-21 23:05:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-11-08 06:42:30
合計ジャッジ時間 11,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 211 ms
87,424 KB
testcase_04 AC 233 ms
89,728 KB
testcase_05 AC 133 ms
82,944 KB
testcase_06 AC 176 ms
85,376 KB
testcase_07 AC 156 ms
83,200 KB
testcase_08 AC 131 ms
82,944 KB
testcase_09 AC 181 ms
85,888 KB
testcase_10 AC 140 ms
81,792 KB
testcase_11 AC 103 ms
78,464 KB
testcase_12 AC 121 ms
79,872 KB
testcase_13 AC 195 ms
86,400 KB
testcase_14 AC 127 ms
80,000 KB
testcase_15 AC 134 ms
81,536 KB
testcase_16 AC 160 ms
83,584 KB
testcase_17 AC 113 ms
78,592 KB
testcase_18 AC 214 ms
89,600 KB
testcase_19 AC 227 ms
89,600 KB
testcase_20 AC 182 ms
84,864 KB
testcase_21 AC 161 ms
81,920 KB
testcase_22 AC 169 ms
84,480 KB
testcase_23 AC 174 ms
84,352 KB
testcase_24 AC 165 ms
84,992 KB
testcase_25 AC 189 ms
86,656 KB
testcase_26 AC 114 ms
81,536 KB
testcase_27 AC 130 ms
80,896 KB
testcase_28 AC 138 ms
81,280 KB
testcase_29 AC 159 ms
85,504 KB
testcase_30 AC 116 ms
79,104 KB
testcase_31 AC 151 ms
83,584 KB
testcase_32 AC 150 ms
84,736 KB
testcase_33 AC 214 ms
89,472 KB
testcase_34 AC 204 ms
87,424 KB
testcase_35 AC 103 ms
79,488 KB
testcase_36 AC 149 ms
82,944 KB
testcase_37 AC 188 ms
85,632 KB
testcase_38 AC 96 ms
77,568 KB
testcase_39 AC 105 ms
77,952 KB
testcase_40 AC 107 ms
79,104 KB
testcase_41 AC 202 ms
88,192 KB
testcase_42 AC 170 ms
84,096 KB
testcase_43 AC 218 ms
90,496 KB
testcase_44 AC 262 ms
92,160 KB
testcase_45 AC 262 ms
92,544 KB
testcase_46 AC 259 ms
92,800 KB
testcase_47 AC 264 ms
92,288 KB
testcase_48 AC 266 ms
92,544 KB
testcase_49 AC 226 ms
90,624 KB
testcase_50 AC 212 ms
90,368 KB
testcase_51 AC 208 ms
90,624 KB
testcase_52 AC 219 ms
90,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

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

seen=[-1]*n
mod=998244353
ans=1
for i in range(n):
  if seen[i]!=-1:
    continue
  seen[i]=0
  todo=[i]
  while todo:
    v=todo.pop()
    for u,c in edge[v]:
      if seen[u]==-1:
        seen[u]=seen[v]^c
        todo.append(u)
      elif seen[v]^c!=seen[u]:
        print(0)
        exit()
  ans*=2
  ans%=mod

print(ans%mod)
0