結果

問題 No.2888 Mamehinata
ユーザー 寝癖寝癖
提出日時 2024-09-13 21:35:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 115,556 KB
最終ジャッジ日時 2024-09-13 21:35:42
合計ジャッジ時間 15,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,144 KB
testcase_01 AC 42 ms
53,248 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 WA -
testcase_05 AC 43 ms
53,760 KB
testcase_06 AC 44 ms
54,016 KB
testcase_07 AC 43 ms
53,504 KB
testcase_08 AC 43 ms
54,144 KB
testcase_09 AC 43 ms
54,016 KB
testcase_10 AC 42 ms
53,888 KB
testcase_11 WA -
testcase_12 AC 43 ms
54,272 KB
testcase_13 AC 152 ms
79,360 KB
testcase_14 AC 129 ms
88,576 KB
testcase_15 WA -
testcase_16 AC 354 ms
105,984 KB
testcase_17 WA -
testcase_18 AC 214 ms
84,992 KB
testcase_19 AC 442 ms
105,088 KB
testcase_20 AC 379 ms
100,608 KB
testcase_21 AC 360 ms
98,688 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 343 ms
107,904 KB
testcase_25 AC 285 ms
103,808 KB
testcase_26 AC 314 ms
107,136 KB
testcase_27 AC 199 ms
98,944 KB
testcase_28 AC 146 ms
81,664 KB
testcase_29 AC 222 ms
89,216 KB
testcase_30 AC 437 ms
108,288 KB
testcase_31 AC 383 ms
103,552 KB
testcase_32 AC 288 ms
94,976 KB
testcase_33 AC 357 ms
100,480 KB
testcase_34 AC 332 ms
96,768 KB
testcase_35 AC 274 ms
93,824 KB
testcase_36 AC 471 ms
110,464 KB
testcase_37 AC 502 ms
111,360 KB
testcase_38 AC 192 ms
85,888 KB
testcase_39 AC 405 ms
103,424 KB
testcase_40 AC 485 ms
108,416 KB
testcase_41 AC 145 ms
82,176 KB
testcase_42 AC 408 ms
104,960 KB
testcase_43 AC 329 ms
110,236 KB
testcase_44 AC 325 ms
111,568 KB
testcase_45 AC 372 ms
115,556 KB
testcase_46 AC 132 ms
81,792 KB
testcase_47 AC 350 ms
110,544 KB
testcase_48 AC 358 ms
101,868 KB
testcase_49 AC 100 ms
77,184 KB
testcase_50 AC 162 ms
85,376 KB
testcase_51 AC 72 ms
73,600 KB
testcase_52 AC 68 ms
70,272 KB
testcase_53 AC 96 ms
76,792 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)

if not to[0]:
    print(*[1]*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