結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,504 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 48 ms
53,760 KB
testcase_04 AC 48 ms
53,504 KB
testcase_05 AC 49 ms
53,760 KB
testcase_06 AC 48 ms
53,888 KB
testcase_07 AC 47 ms
53,376 KB
testcase_08 AC 48 ms
53,504 KB
testcase_09 AC 47 ms
53,888 KB
testcase_10 AC 47 ms
53,760 KB
testcase_11 AC 47 ms
53,888 KB
testcase_12 AC 48 ms
54,272 KB
testcase_13 AC 179 ms
79,616 KB
testcase_14 AC 151 ms
85,760 KB
testcase_15 AC 352 ms
92,160 KB
testcase_16 AC 395 ms
99,456 KB
testcase_17 AC 142 ms
86,656 KB
testcase_18 AC 258 ms
84,352 KB
testcase_19 AC 462 ms
99,072 KB
testcase_20 AC 433 ms
95,360 KB
testcase_21 AC 400 ms
93,824 KB
testcase_22 AC 192 ms
90,496 KB
testcase_23 AC 230 ms
95,360 KB
testcase_24 AC 407 ms
100,352 KB
testcase_25 AC 300 ms
99,584 KB
testcase_26 AC 337 ms
98,944 KB
testcase_27 AC 192 ms
94,080 KB
testcase_28 AC 150 ms
81,024 KB
testcase_29 AC 236 ms
86,272 KB
testcase_30 AC 475 ms
101,504 KB
testcase_31 AC 374 ms
97,792 KB
testcase_32 AC 282 ms
90,880 KB
testcase_33 AC 356 ms
95,232 KB
testcase_34 AC 320 ms
92,672 KB
testcase_35 AC 276 ms
90,624 KB
testcase_36 AC 473 ms
102,784 KB
testcase_37 AC 493 ms
103,296 KB
testcase_38 AC 197 ms
84,352 KB
testcase_39 AC 416 ms
98,304 KB
testcase_40 AC 498 ms
102,784 KB
testcase_41 AC 156 ms
81,536 KB
testcase_42 AC 419 ms
98,688 KB
testcase_43 AC 316 ms
104,804 KB
testcase_44 AC 333 ms
105,040 KB
testcase_45 AC 366 ms
108,256 KB
testcase_46 AC 136 ms
81,280 KB
testcase_47 AC 339 ms
103,880 KB
testcase_48 AC 353 ms
98,552 KB
testcase_49 AC 114 ms
76,800 KB
testcase_50 AC 186 ms
84,992 KB
testcase_51 AC 87 ms
73,472 KB
testcase_52 AC 82 ms
70,272 KB
testcase_53 AC 101 ms
76,544 KB
testcase_54 AC 47 ms
53,504 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