結果

問題 No.2888 Mamehinata
ユーザー hiro1729hiro1729
提出日時 2024-09-13 21:49:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 108,504 KB
最終ジャッジ日時 2024-09-13 21:50:07
合計ジャッジ時間 16,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 43 ms
53,632 KB
testcase_03 AC 44 ms
53,540 KB
testcase_04 AC 44 ms
53,504 KB
testcase_05 AC 45 ms
54,528 KB
testcase_06 AC 44 ms
54,272 KB
testcase_07 AC 43 ms
53,760 KB
testcase_08 AC 43 ms
53,760 KB
testcase_09 AC 43 ms
54,016 KB
testcase_10 AC 43 ms
53,888 KB
testcase_11 AC 44 ms
54,016 KB
testcase_12 AC 44 ms
54,016 KB
testcase_13 AC 160 ms
79,856 KB
testcase_14 AC 136 ms
85,760 KB
testcase_15 AC 342 ms
92,004 KB
testcase_16 AC 390 ms
99,420 KB
testcase_17 AC 125 ms
86,880 KB
testcase_18 AC 225 ms
84,500 KB
testcase_19 AC 471 ms
99,584 KB
testcase_20 AC 396 ms
95,744 KB
testcase_21 AC 414 ms
94,264 KB
testcase_22 AC 198 ms
90,988 KB
testcase_23 AC 226 ms
95,312 KB
testcase_24 AC 381 ms
100,172 KB
testcase_25 AC 292 ms
99,616 KB
testcase_26 AC 337 ms
99,200 KB
testcase_27 AC 184 ms
94,288 KB
testcase_28 AC 140 ms
80,920 KB
testcase_29 AC 212 ms
86,780 KB
testcase_30 AC 449 ms
101,376 KB
testcase_31 AC 381 ms
97,652 KB
testcase_32 AC 320 ms
91,136 KB
testcase_33 AC 360 ms
95,452 KB
testcase_34 AC 305 ms
92,464 KB
testcase_35 AC 281 ms
90,368 KB
testcase_36 AC 488 ms
102,872 KB
testcase_37 AC 548 ms
103,680 KB
testcase_38 AC 192 ms
84,292 KB
testcase_39 AC 450 ms
98,048 KB
testcase_40 AC 527 ms
103,040 KB
testcase_41 AC 153 ms
81,920 KB
testcase_42 AC 467 ms
99,200 KB
testcase_43 AC 345 ms
104,676 KB
testcase_44 AC 343 ms
105,036 KB
testcase_45 AC 429 ms
108,504 KB
testcase_46 AC 126 ms
81,552 KB
testcase_47 AC 339 ms
104,264 KB
testcase_48 AC 380 ms
98,532 KB
testcase_49 AC 105 ms
77,184 KB
testcase_50 AC 173 ms
85,376 KB
testcase_51 AC 75 ms
73,856 KB
testcase_52 AC 82 ms
70,912 KB
testcase_53 AC 91 ms
76,760 KB
testcase_54 AC 44 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())
g = [[] for _ in range(N)]
for _ in range(M):
	u, v = map(int, input().split())
	u -= 1
	v -= 1
	g[u].append(v)
	g[v].append(u)
dist = [10 ** 9] * N
dist[0] = 0
q = deque([0])
while q:
	u = q.popleft()
	for v in g[u]:
		if dist[u] + 1 < dist[v]:
			dist[v] = dist[u] + 1
			q.append(v)
if min(dist[1:]) == 10 ** 9:
	for i in range(1, N + 1):
		print(0)
	exit()
c = [0] * (N + 1)
for i in dist:
	if i < 10 ** 9:
		c[i] += 1
cn = [0] * 2
cn[0] = 1
for i in range(1, N + 1):
	cn[i % 2] += c[i]
	print(cn[i % 2])
0