結果

問題 No.2888 Mamehinata
ユーザー 寝癖寝癖
提出日時 2024-09-13 21:30:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 115,716 KB
最終ジャッジ日時 2024-09-13 21:31:07
合計ジャッジ時間 15,411 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 42 ms
53,548 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 42 ms
53,888 KB
testcase_04 WA -
testcase_05 AC 42 ms
54,400 KB
testcase_06 AC 43 ms
54,016 KB
testcase_07 AC 42 ms
53,760 KB
testcase_08 AC 43 ms
53,760 KB
testcase_09 AC 43 ms
54,272 KB
testcase_10 AC 41 ms
54,016 KB
testcase_11 WA -
testcase_12 AC 43 ms
54,016 KB
testcase_13 AC 155 ms
79,488 KB
testcase_14 AC 135 ms
88,772 KB
testcase_15 WA -
testcase_16 AC 360 ms
105,856 KB
testcase_17 WA -
testcase_18 AC 214 ms
84,992 KB
testcase_19 AC 445 ms
105,368 KB
testcase_20 AC 367 ms
100,608 KB
testcase_21 AC 345 ms
98,608 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 346 ms
108,188 KB
testcase_25 AC 272 ms
104,328 KB
testcase_26 AC 290 ms
106,880 KB
testcase_27 AC 171 ms
98,912 KB
testcase_28 AC 128 ms
81,664 KB
testcase_29 AC 200 ms
89,240 KB
testcase_30 AC 398 ms
108,252 KB
testcase_31 AC 380 ms
103,168 KB
testcase_32 AC 251 ms
94,820 KB
testcase_33 AC 317 ms
100,788 KB
testcase_34 AC 280 ms
96,768 KB
testcase_35 AC 281 ms
94,080 KB
testcase_36 AC 446 ms
110,300 KB
testcase_37 AC 442 ms
111,360 KB
testcase_38 AC 199 ms
85,760 KB
testcase_39 AC 373 ms
103,552 KB
testcase_40 AC 452 ms
108,820 KB
testcase_41 AC 164 ms
82,432 KB
testcase_42 AC 391 ms
104,960 KB
testcase_43 AC 305 ms
110,356 KB
testcase_44 AC 329 ms
111,352 KB
testcase_45 AC 389 ms
115,716 KB
testcase_46 AC 118 ms
81,920 KB
testcase_47 AC 326 ms
110,540 KB
testcase_48 AC 326 ms
102,248 KB
testcase_49 AC 116 ms
77,184 KB
testcase_50 AC 166 ms
85,248 KB
testcase_51 AC 74 ms
73,856 KB
testcase_52 AC 69 ms
70,144 KB
testcase_53 AC 87 ms
76,772 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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)

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