結果

問題 No.2277 Honest or Dishonest ?
ユーザー square1001square1001
提出日時 2023-04-21 23:14:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 1,009 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 40,448 KB
最終ジャッジ日時 2024-11-08 06:44:46
合計ジャッジ時間 24,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 588 ms
34,304 KB
testcase_04 AC 581 ms
35,712 KB
testcase_05 AC 235 ms
22,656 KB
testcase_06 AC 496 ms
30,336 KB
testcase_07 AC 394 ms
26,752 KB
testcase_08 AC 209 ms
21,888 KB
testcase_09 AC 377 ms
27,776 KB
testcase_10 AC 319 ms
22,784 KB
testcase_11 AC 153 ms
16,384 KB
testcase_12 AC 308 ms
21,760 KB
testcase_13 AC 577 ms
32,640 KB
testcase_14 AC 384 ms
24,320 KB
testcase_15 AC 210 ms
20,736 KB
testcase_16 AC 380 ms
26,624 KB
testcase_17 AC 193 ms
18,432 KB
testcase_18 AC 544 ms
34,304 KB
testcase_19 AC 552 ms
34,688 KB
testcase_20 AC 453 ms
29,568 KB
testcase_21 AC 409 ms
26,624 KB
testcase_22 AC 367 ms
26,752 KB
testcase_23 AC 572 ms
32,000 KB
testcase_24 AC 341 ms
25,600 KB
testcase_25 AC 421 ms
29,824 KB
testcase_26 AC 157 ms
19,456 KB
testcase_27 AC 275 ms
21,248 KB
testcase_28 AC 205 ms
20,736 KB
testcase_29 AC 300 ms
25,216 KB
testcase_30 AC 252 ms
20,992 KB
testcase_31 AC 430 ms
28,160 KB
testcase_32 AC 284 ms
24,064 KB
testcase_33 AC 544 ms
34,176 KB
testcase_34 AC 596 ms
35,328 KB
testcase_35 AC 112 ms
15,872 KB
testcase_36 AC 362 ms
26,112 KB
testcase_37 AC 571 ms
33,280 KB
testcase_38 AC 149 ms
15,872 KB
testcase_39 AC 192 ms
18,048 KB
testcase_40 AC 98 ms
15,232 KB
testcase_41 AC 640 ms
36,608 KB
testcase_42 AC 432 ms
29,184 KB
testcase_43 AC 681 ms
40,192 KB
testcase_44 AC 672 ms
40,320 KB
testcase_45 AC 684 ms
40,192 KB
testcase_46 AC 689 ms
40,192 KB
testcase_47 AC 665 ms
40,448 KB
testcase_48 AC 686 ms
40,448 KB
testcase_49 AC 703 ms
40,448 KB
testcase_50 AC 695 ms
40,192 KB
testcase_51 AC 699 ms
40,320 KB
testcase_52 AC 697 ms
40,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

col = [ -1 ] * n
answer = 1
for i in range(n):
	if col[i] == -1:
		v = [ i ]
		col[i] = 0
		while v:
			u = v.pop()
			for b, c in g[u]:
				if col[b] == -1:
					col[b] = col[u] ^ c
					v.append(b)
				elif col[b] != col[u] ^ c:
					answer = 0
		answer = answer * 2 % 998244353

print(answer)
0