結果

問題 No.1420 国勢調査 (Easy)
ユーザー 👑 potato167potato167
提出日時 2022-02-17 02:06:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 99,964 KB
最終ジャッジ日時 2024-06-29 07:25:25
合計ジャッジ時間 11,545 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,816 KB
testcase_01 AC 37 ms
53,296 KB
testcase_02 AC 253 ms
87,572 KB
testcase_03 AC 251 ms
87,948 KB
testcase_04 AC 250 ms
87,832 KB
testcase_05 AC 270 ms
87,588 KB
testcase_06 AC 267 ms
87,848 KB
testcase_07 AC 237 ms
86,008 KB
testcase_08 AC 236 ms
86,000 KB
testcase_09 AC 237 ms
86,392 KB
testcase_10 AC 246 ms
86,216 KB
testcase_11 AC 243 ms
86,096 KB
testcase_12 AC 131 ms
84,848 KB
testcase_13 AC 163 ms
85,352 KB
testcase_14 AC 131 ms
85,476 KB
testcase_15 AC 162 ms
85,592 KB
testcase_16 AC 161 ms
85,648 KB
testcase_17 AC 164 ms
85,636 KB
testcase_18 AC 164 ms
85,356 KB
testcase_19 AC 163 ms
85,820 KB
testcase_20 AC 158 ms
85,208 KB
testcase_21 AC 161 ms
85,036 KB
testcase_22 AC 394 ms
99,964 KB
testcase_23 AC 376 ms
99,480 KB
testcase_24 AC 375 ms
99,268 KB
testcase_25 AC 370 ms
99,344 KB
testcase_26 AC 373 ms
99,440 KB
testcase_27 AC 277 ms
93,132 KB
testcase_28 AC 286 ms
93,012 KB
testcase_29 AC 289 ms
92,924 KB
testcase_30 AC 278 ms
93,096 KB
testcase_31 AC 276 ms
92,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
G=[[(0,0) for j in range(0)] for i in range(N)]
for i in range(M):
	A,B=map(int,input().split())
	A-=1
	B-=1
	Y=int(input())
	G[A].append((B,Y))
	G[B].append((A,Y))
ans=[-1]*N
for i in range(N):
	if ans[i]!=-1:
		continue
	ans[i]=0
	order=[i]*1
	ind=0
	while ind!=len(order):
		a=order[ind]
		for x in G[a]:
			if ans[x[0]]==-1:
				ans[x[0]]=(ans[a]^x[1])
				order.append(x[0])
			elif ans[x[0]]!=(ans[a]^x[1]):
				print(-1)
				exit()
		ind+=1
for i in range(N):
	print(ans[i])
0