結果

問題 No.2888 Mamehinata
ユーザー 寝癖寝癖
提出日時 2024-09-13 21:36:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 532 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 115,616 KB
最終ジャッジ日時 2024-09-13 21:36:59
合計ジャッジ時間 15,932 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 46 ms
53,888 KB
testcase_03 AC 46 ms
53,760 KB
testcase_04 AC 47 ms
53,888 KB
testcase_05 AC 46 ms
54,272 KB
testcase_06 AC 45 ms
54,400 KB
testcase_07 AC 45 ms
54,144 KB
testcase_08 AC 46 ms
54,016 KB
testcase_09 AC 45 ms
53,888 KB
testcase_10 AC 46 ms
53,760 KB
testcase_11 AC 45 ms
53,888 KB
testcase_12 AC 46 ms
53,632 KB
testcase_13 AC 166 ms
79,744 KB
testcase_14 AC 146 ms
88,704 KB
testcase_15 AC 301 ms
94,208 KB
testcase_16 AC 366 ms
105,856 KB
testcase_17 AC 141 ms
89,984 KB
testcase_18 AC 256 ms
84,864 KB
testcase_19 AC 451 ms
105,600 KB
testcase_20 AC 387 ms
100,720 KB
testcase_21 AC 365 ms
98,688 KB
testcase_22 AC 179 ms
94,464 KB
testcase_23 AC 237 ms
99,968 KB
testcase_24 AC 382 ms
108,288 KB
testcase_25 AC 286 ms
104,192 KB
testcase_26 AC 342 ms
106,880 KB
testcase_27 AC 197 ms
98,944 KB
testcase_28 AC 147 ms
81,920 KB
testcase_29 AC 233 ms
89,088 KB
testcase_30 AC 456 ms
108,288 KB
testcase_31 AC 379 ms
103,424 KB
testcase_32 AC 286 ms
95,104 KB
testcase_33 AC 360 ms
100,736 KB
testcase_34 AC 316 ms
97,280 KB
testcase_35 AC 281 ms
94,208 KB
testcase_36 AC 503 ms
110,208 KB
testcase_37 AC 532 ms
111,232 KB
testcase_38 AC 196 ms
86,016 KB
testcase_39 AC 423 ms
103,680 KB
testcase_40 AC 502 ms
108,928 KB
testcase_41 AC 156 ms
82,560 KB
testcase_42 AC 417 ms
104,832 KB
testcase_43 AC 327 ms
110,868 KB
testcase_44 AC 379 ms
111,488 KB
testcase_45 AC 385 ms
115,616 KB
testcase_46 AC 133 ms
82,176 KB
testcase_47 AC 337 ms
110,804 KB
testcase_48 AC 366 ms
102,124 KB
testcase_49 AC 112 ms
77,568 KB
testcase_50 AC 179 ms
85,248 KB
testcase_51 AC 85 ms
73,728 KB
testcase_52 AC 80 ms
70,400 KB
testcase_53 AC 100 ms
76,672 KB
testcase_54 AC 45 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())
to = [[] for _ in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    u, v = u-1, v-1
    to[u].append(v)
    to[v].append(u)

dist = [-1] * N
que = deque([0])
dist[0] = 0
while que:
    v = que.popleft()
    for u in to[v]:
        if dist[u] != -1:
            continue
        dist[u] = dist[v] + 1
        que.append(u)

if not to[0]:
    print(*[0]*N, sep='\n')
    exit()

ans = [0]*(N+1)
for d in dist:
    if d == -1:
        continue
    ans[d] += 1
for i in range(N-1):
    ans[i+2] += ans[i]
print(*ans[1:], sep='\n')
0