結果

問題 No.2277 Honest or Dishonest ?
ユーザー 👑 p-adicp-adic
提出日時 2023-06-05 09:58:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 835 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-06-09 05:02:16
合計ジャッジ時間 28,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,752 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 663 ms
15,872 KB
testcase_04 AC 687 ms
18,816 KB
testcase_05 AC 285 ms
18,048 KB
testcase_06 AC 543 ms
13,952 KB
testcase_07 AC 479 ms
14,592 KB
testcase_08 AC 252 ms
19,456 KB
testcase_09 AC 453 ms
17,664 KB
testcase_10 AC 339 ms
12,928 KB
testcase_11 AC 174 ms
12,160 KB
testcase_12 AC 290 ms
10,880 KB
testcase_13 AC 621 ms
14,592 KB
testcase_14 AC 364 ms
10,880 KB
testcase_15 AC 239 ms
16,768 KB
testcase_16 AC 452 ms
14,336 KB
testcase_17 AC 214 ms
12,160 KB
testcase_18 AC 638 ms
18,944 KB
testcase_19 AC 665 ms
18,816 KB
testcase_20 AC 523 ms
16,512 KB
testcase_21 AC 422 ms
12,416 KB
testcase_22 AC 427 ms
15,744 KB
testcase_23 AC 550 ms
12,544 KB
testcase_24 AC 390 ms
15,616 KB
testcase_25 AC 495 ms
18,944 KB
testcase_26 AC 189 ms
18,688 KB
testcase_27 AC 286 ms
12,160 KB
testcase_28 AC 246 ms
16,384 KB
testcase_29 AC 367 ms
18,048 KB
testcase_30 AC 283 ms
12,928 KB
testcase_31 AC 488 ms
15,104 KB
testcase_32 AC 329 ms
17,536 KB
testcase_33 AC 626 ms
18,048 KB
testcase_34 AC 687 ms
16,384 KB
testcase_35 AC 120 ms
15,360 KB
testcase_36 AC 418 ms
14,464 KB
testcase_37 AC 591 ms
13,312 KB
testcase_38 AC 154 ms
11,136 KB
testcase_39 AC 208 ms
11,520 KB
testcase_40 AC 109 ms
14,464 KB
testcase_41 AC 735 ms
16,896 KB
testcase_42 AC 515 ms
15,616 KB
testcase_43 AC 817 ms
20,096 KB
testcase_44 AC 811 ms
20,096 KB
testcase_45 AC 806 ms
19,840 KB
testcase_46 AC 828 ms
20,224 KB
testcase_47 AC 835 ms
19,968 KB
testcase_48 AC 814 ms
20,096 KB
testcase_49 AC 818 ms
19,968 KB
testcase_50 AC 803 ms
20,096 KB
testcase_51 AC 815 ms
19,968 KB
testcase_52 AC 821 ms
20,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
def J():
	return map(int,input().split())
N,Q=J()
p=[i for i in R(N*2)]
def r(i):
	m=p[i]
	while i!=m:
		p[i]=i=p[m]
		m=p[i]
	return i
for i in R(Q):
	A,B,C=J()
	A-=1
	B-=1
	for j in R(2):p[r(A+N*j)]=r(B+N*((C+j)%2))
f=[1]*(N*2)
a=1
for i in R(N):
	j,k=r(i),r(i+N)
	if f[j]:a=a*[2,0][j==k]%998244353
	f[j]=f[k]=0
print(a)
0