結果

問題 No.2888 Mamehinata
ユーザー ああいいああいい
提出日時 2024-10-05 07:54:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 442 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 119,808 KB
最終ジャッジ日時 2024-10-05 07:54:52
合計ジャッジ時間 13,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,812 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 44 ms
52,480 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 47 ms
52,224 KB
testcase_07 AC 36 ms
52,460 KB
testcase_08 AC 41 ms
52,480 KB
testcase_09 AC 37 ms
52,608 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 36 ms
52,556 KB
testcase_13 AC 143 ms
79,360 KB
testcase_14 AC 160 ms
83,456 KB
testcase_15 AC 241 ms
90,752 KB
testcase_16 AC 292 ms
95,872 KB
testcase_17 AC 111 ms
85,456 KB
testcase_18 AC 189 ms
83,964 KB
testcase_19 AC 322 ms
98,816 KB
testcase_20 AC 278 ms
94,604 KB
testcase_21 AC 325 ms
94,088 KB
testcase_22 AC 145 ms
89,472 KB
testcase_23 AC 181 ms
93,952 KB
testcase_24 AC 307 ms
97,104 KB
testcase_25 AC 231 ms
96,188 KB
testcase_26 AC 251 ms
96,076 KB
testcase_27 AC 173 ms
90,880 KB
testcase_28 AC 130 ms
80,128 KB
testcase_29 AC 181 ms
85,872 KB
testcase_30 AC 376 ms
98,048 KB
testcase_31 AC 314 ms
94,532 KB
testcase_32 AC 270 ms
89,216 KB
testcase_33 AC 298 ms
93,024 KB
testcase_34 AC 261 ms
90,752 KB
testcase_35 AC 235 ms
89,060 KB
testcase_36 AC 394 ms
99,712 KB
testcase_37 AC 414 ms
100,736 KB
testcase_38 AC 166 ms
83,328 KB
testcase_39 AC 356 ms
95,788 KB
testcase_40 AC 442 ms
99,936 KB
testcase_41 AC 139 ms
81,024 KB
testcase_42 AC 352 ms
96,144 KB
testcase_43 AC 250 ms
111,160 KB
testcase_44 AC 268 ms
115,104 KB
testcase_45 AC 332 ms
119,808 KB
testcase_46 AC 111 ms
81,280 KB
testcase_47 AC 384 ms
114,664 KB
testcase_48 AC 414 ms
101,116 KB
testcase_49 AC 109 ms
77,184 KB
testcase_50 AC 168 ms
85,000 KB
testcase_51 AC 72 ms
72,448 KB
testcase_52 AC 75 ms
69,120 KB
testcase_53 AC 84 ms
76,212 KB
testcase_54 AC 37 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
G = [[] for _ in range(N)]
for _ in range(M):
	u,v = map(int,input().split())
	G[u-1].append(v-1)
	G[v-1].append(u-1)
	
memo = [0] * N
memo[0] = 1
stack = [0]
even = 0
odd = 1

ans = 1
import sys
if len(G[0]) == 0:
	for _ in range(N):
		print(0)
	exit()
	
for i in range(N):
	nx = []
	while stack:
		now = stack.pop()
		for v in G[now]:
			if memo[v] == 0:
				nx.append(v)
				memo[v] = 1
				if i % 2 == 0:
					even += 1
				else:
					odd += 1
	if i % 2 == 0:
		ans = ans + even - odd
	else:
		ans = ans - even + odd
	print(ans)
	stack = nx
0