結果

問題 No.2888 Mamehinata
ユーザー hiro1729hiro1729
提出日時 2024-09-13 21:49:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 564 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 107,880 KB
最終ジャッジ日時 2024-09-13 21:50:02
合計ジャッジ時間 16,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
53,504 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 46 ms
53,376 KB
testcase_03 AC 46 ms
53,376 KB
testcase_04 WA -
testcase_05 AC 48 ms
53,888 KB
testcase_06 AC 48 ms
53,632 KB
testcase_07 AC 46 ms
53,760 KB
testcase_08 AC 50 ms
53,632 KB
testcase_09 AC 47 ms
53,888 KB
testcase_10 AC 47 ms
53,504 KB
testcase_11 WA -
testcase_12 AC 48 ms
53,888 KB
testcase_13 AC 176 ms
79,744 KB
testcase_14 AC 151 ms
85,376 KB
testcase_15 WA -
testcase_16 AC 404 ms
99,200 KB
testcase_17 WA -
testcase_18 AC 246 ms
84,608 KB
testcase_19 AC 447 ms
99,328 KB
testcase_20 AC 395 ms
95,360 KB
testcase_21 AC 414 ms
94,208 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 377 ms
100,608 KB
testcase_25 AC 338 ms
99,456 KB
testcase_26 AC 316 ms
99,200 KB
testcase_27 AC 196 ms
94,336 KB
testcase_28 AC 150 ms
80,512 KB
testcase_29 AC 230 ms
86,912 KB
testcase_30 AC 484 ms
101,760 KB
testcase_31 AC 380 ms
97,664 KB
testcase_32 AC 290 ms
90,880 KB
testcase_33 AC 362 ms
95,488 KB
testcase_34 AC 320 ms
92,544 KB
testcase_35 AC 280 ms
90,368 KB
testcase_36 AC 494 ms
102,784 KB
testcase_37 AC 491 ms
103,424 KB
testcase_38 AC 200 ms
84,352 KB
testcase_39 AC 418 ms
98,048 KB
testcase_40 AC 491 ms
103,040 KB
testcase_41 AC 161 ms
81,536 KB
testcase_42 AC 422 ms
99,072 KB
testcase_43 AC 332 ms
104,820 KB
testcase_44 AC 344 ms
105,052 KB
testcase_45 AC 397 ms
107,880 KB
testcase_46 AC 135 ms
81,408 KB
testcase_47 AC 333 ms
104,144 KB
testcase_48 AC 375 ms
98,780 KB
testcase_49 AC 115 ms
77,056 KB
testcase_50 AC 188 ms
84,864 KB
testcase_51 AC 88 ms
73,600 KB
testcase_52 AC 82 ms
70,400 KB
testcase_53 AC 103 ms
76,416 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)
if min(dist[1:]) == 10 ** 9:
	for i in range(1, N + 1):
		print(0)
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