結果

問題 No.2888 Mamehinata
ユーザー 👑 seekworserseekworser
提出日時 2024-08-31 12:26:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 110,560 KB
最終ジャッジ日時 2024-09-07 09:48:10
合計ジャッジ時間 14,738 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,244 KB
testcase_01 AC 40 ms
53,540 KB
testcase_02 AC 42 ms
53,756 KB
testcase_03 AC 41 ms
55,328 KB
testcase_04 WA -
testcase_05 AC 43 ms
54,724 KB
testcase_06 AC 43 ms
54,640 KB
testcase_07 AC 42 ms
55,228 KB
testcase_08 AC 41 ms
54,500 KB
testcase_09 AC 42 ms
55,236 KB
testcase_10 AC 43 ms
55,492 KB
testcase_11 WA -
testcase_12 AC 42 ms
54,328 KB
testcase_13 AC 151 ms
80,012 KB
testcase_14 AC 122 ms
86,148 KB
testcase_15 WA -
testcase_16 AC 362 ms
101,348 KB
testcase_17 WA -
testcase_18 AC 211 ms
84,500 KB
testcase_19 AC 440 ms
101,240 KB
testcase_20 AC 367 ms
96,980 KB
testcase_21 AC 375 ms
96,308 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 323 ms
103,844 KB
testcase_25 AC 262 ms
100,504 KB
testcase_26 AC 293 ms
102,692 KB
testcase_27 AC 156 ms
93,928 KB
testcase_28 AC 124 ms
81,284 KB
testcase_29 AC 205 ms
87,760 KB
testcase_30 AC 422 ms
103,836 KB
testcase_31 AC 355 ms
99,420 KB
testcase_32 AC 259 ms
92,324 KB
testcase_33 AC 332 ms
97,980 KB
testcase_34 AC 282 ms
94,512 KB
testcase_35 AC 265 ms
92,136 KB
testcase_36 AC 437 ms
106,368 KB
testcase_37 AC 460 ms
106,728 KB
testcase_38 AC 168 ms
85,400 KB
testcase_39 AC 392 ms
100,900 KB
testcase_40 AC 457 ms
106,464 KB
testcase_41 AC 134 ms
82,172 KB
testcase_42 AC 398 ms
102,264 KB
testcase_43 AC 296 ms
106,640 KB
testcase_44 AC 316 ms
107,732 KB
testcase_45 AC 343 ms
110,560 KB
testcase_46 AC 109 ms
80,060 KB
testcase_47 AC 311 ms
106,180 KB
testcase_48 AC 330 ms
99,940 KB
testcase_49 AC 98 ms
77,788 KB
testcase_50 AC 164 ms
85,496 KB
testcase_51 AC 71 ms
74,056 KB
testcase_52 AC 68 ms
71,336 KB
testcase_53 AC 85 ms
76,924 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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