結果

問題 No.2888 Mamehinata
ユーザー hiro1729hiro1729
提出日時 2024-09-13 21:47:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,740 KB
最終ジャッジ日時 2024-09-13 21:47:45
合計ジャッジ時間 15,822 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 47 ms
53,376 KB
testcase_02 AC 45 ms
53,632 KB
testcase_03 AC 45 ms
53,376 KB
testcase_04 WA -
testcase_05 AC 48 ms
54,144 KB
testcase_06 AC 47 ms
53,760 KB
testcase_07 AC 46 ms
53,632 KB
testcase_08 AC 46 ms
53,504 KB
testcase_09 AC 47 ms
53,760 KB
testcase_10 AC 47 ms
53,760 KB
testcase_11 WA -
testcase_12 AC 49 ms
53,888 KB
testcase_13 AC 171 ms
79,616 KB
testcase_14 AC 144 ms
84,736 KB
testcase_15 WA -
testcase_16 AC 381 ms
98,048 KB
testcase_17 WA -
testcase_18 AC 230 ms
84,096 KB
testcase_19 AC 465 ms
98,304 KB
testcase_20 AC 384 ms
94,720 KB
testcase_21 AC 391 ms
93,184 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 379 ms
98,816 KB
testcase_25 AC 319 ms
97,920 KB
testcase_26 AC 322 ms
97,664 KB
testcase_27 AC 190 ms
93,056 KB
testcase_28 AC 145 ms
80,512 KB
testcase_29 AC 226 ms
86,400 KB
testcase_30 AC 443 ms
100,096 KB
testcase_31 AC 408 ms
96,512 KB
testcase_32 AC 277 ms
90,240 KB
testcase_33 AC 358 ms
94,336 KB
testcase_34 AC 306 ms
91,764 KB
testcase_35 AC 286 ms
89,728 KB
testcase_36 AC 511 ms
101,504 KB
testcase_37 AC 510 ms
102,272 KB
testcase_38 AC 194 ms
84,352 KB
testcase_39 AC 392 ms
96,896 KB
testcase_40 AC 509 ms
101,620 KB
testcase_41 AC 184 ms
81,344 KB
testcase_42 AC 445 ms
98,084 KB
testcase_43 AC 327 ms
103,656 KB
testcase_44 AC 346 ms
104,144 KB
testcase_45 AC 380 ms
106,740 KB
testcase_46 AC 131 ms
81,136 KB
testcase_47 AC 356 ms
102,992 KB
testcase_48 AC 350 ms
97,892 KB
testcase_49 AC 114 ms
77,272 KB
testcase_50 AC 180 ms
85,376 KB
testcase_51 AC 84 ms
73,856 KB
testcase_52 AC 79 ms
70,528 KB
testcase_53 AC 97 ms
76,672 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
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