結果

問題 No.2888 Mamehinata
ユーザー 👑 seekworserseekworser
提出日時 2024-08-31 12:28:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 110,692 KB
最終ジャッジ日時 2024-09-07 09:48:16
合計ジャッジ時間 13,071 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,956 KB
testcase_01 AC 38 ms
53,944 KB
testcase_02 AC 38 ms
54,560 KB
testcase_03 AC 39 ms
54,796 KB
testcase_04 AC 39 ms
54,540 KB
testcase_05 AC 40 ms
54,868 KB
testcase_06 AC 39 ms
54,524 KB
testcase_07 AC 38 ms
55,392 KB
testcase_08 AC 38 ms
55,600 KB
testcase_09 AC 38 ms
54,940 KB
testcase_10 AC 38 ms
55,984 KB
testcase_11 AC 40 ms
54,500 KB
testcase_12 AC 39 ms
55,360 KB
testcase_13 AC 138 ms
79,744 KB
testcase_14 AC 110 ms
86,144 KB
testcase_15 AC 251 ms
90,088 KB
testcase_16 AC 315 ms
101,376 KB
testcase_17 AC 91 ms
83,212 KB
testcase_18 AC 186 ms
84,660 KB
testcase_19 AC 379 ms
101,320 KB
testcase_20 AC 308 ms
96,816 KB
testcase_21 AC 306 ms
96,040 KB
testcase_22 AC 134 ms
87,252 KB
testcase_23 AC 172 ms
91,520 KB
testcase_24 AC 327 ms
103,872 KB
testcase_25 AC 229 ms
100,660 KB
testcase_26 AC 249 ms
102,576 KB
testcase_27 AC 145 ms
93,908 KB
testcase_28 AC 111 ms
81,220 KB
testcase_29 AC 173 ms
87,496 KB
testcase_30 AC 383 ms
103,580 KB
testcase_31 AC 312 ms
99,424 KB
testcase_32 AC 218 ms
92,664 KB
testcase_33 AC 292 ms
98,068 KB
testcase_34 AC 255 ms
94,704 KB
testcase_35 AC 220 ms
92,004 KB
testcase_36 AC 413 ms
106,300 KB
testcase_37 AC 403 ms
106,904 KB
testcase_38 AC 148 ms
85,440 KB
testcase_39 AC 335 ms
101,404 KB
testcase_40 AC 408 ms
106,656 KB
testcase_41 AC 117 ms
82,284 KB
testcase_42 AC 351 ms
102,136 KB
testcase_43 AC 263 ms
106,888 KB
testcase_44 AC 275 ms
107,352 KB
testcase_45 AC 326 ms
110,692 KB
testcase_46 AC 102 ms
80,168 KB
testcase_47 AC 268 ms
105,864 KB
testcase_48 AC 268 ms
99,808 KB
testcase_49 AC 89 ms
77,540 KB
testcase_50 AC 153 ms
85,396 KB
testcase_51 AC 67 ms
74,224 KB
testcase_52 AC 62 ms
71,908 KB
testcase_53 AC 80 ms
76,676 KB
testcase_54 AC 39 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,m = map(int, input().split())
g = [[] for _ in range(n)]
for i in range(m):
    u,v = map(int, input().split())
    g[u-1].append(v-1)
    g[v-1].append(u-1)

if len(g[0]) == 0: exit(print("0\n" * n, end=""))
d = [(1 << 30)] * n
d[0] = 0
q = deque([0])
while q:
    u = q.popleft()
    for v in g[u]:
        if d[v] > d[u] + 1:
            d[v] = d[u] + 1
            q.append(v)

cnt = [0] * (n+1)
for x in d:
    if x != 1 << 30:
        cnt[x] += 1
for i in range(n-1):
    cnt[i+2] += cnt[i]
print('\n'.join(map(str, cnt[1:])))
0