結果

問題 No.2888 Mamehinata
ユーザー 👑 rin204rin204
提出日時 2024-09-13 21:24:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 114,404 KB
最終ジャッジ日時 2024-09-13 21:25:30
合計ジャッジ時間 15,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,016 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 41 ms
53,760 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 43 ms
54,144 KB
testcase_05 AC 43 ms
54,400 KB
testcase_06 AC 42 ms
54,272 KB
testcase_07 AC 47 ms
53,888 KB
testcase_08 AC 42 ms
53,888 KB
testcase_09 AC 41 ms
53,632 KB
testcase_10 AC 42 ms
54,144 KB
testcase_11 AC 42 ms
54,016 KB
testcase_12 AC 42 ms
54,144 KB
testcase_13 AC 153 ms
79,616 KB
testcase_14 AC 134 ms
87,936 KB
testcase_15 AC 299 ms
90,208 KB
testcase_16 AC 385 ms
104,576 KB
testcase_17 AC 120 ms
84,480 KB
testcase_18 AC 216 ms
84,680 KB
testcase_19 AC 452 ms
104,164 KB
testcase_20 AC 368 ms
99,544 KB
testcase_21 AC 358 ms
97,948 KB
testcase_22 AC 187 ms
88,476 KB
testcase_23 AC 228 ms
92,116 KB
testcase_24 AC 357 ms
106,752 KB
testcase_25 AC 273 ms
102,604 KB
testcase_26 AC 326 ms
105,536 KB
testcase_27 AC 183 ms
97,516 KB
testcase_28 AC 129 ms
81,280 KB
testcase_29 AC 231 ms
88,832 KB
testcase_30 AC 426 ms
106,888 KB
testcase_31 AC 397 ms
102,228 KB
testcase_32 AC 280 ms
94,336 KB
testcase_33 AC 376 ms
99,460 KB
testcase_34 AC 300 ms
96,164 KB
testcase_35 AC 263 ms
93,432 KB
testcase_36 AC 472 ms
108,824 KB
testcase_37 AC 501 ms
109,552 KB
testcase_38 AC 182 ms
85,276 KB
testcase_39 AC 398 ms
101,988 KB
testcase_40 AC 507 ms
107,500 KB
testcase_41 AC 147 ms
82,048 KB
testcase_42 AC 454 ms
103,680 KB
testcase_43 AC 314 ms
109,328 KB
testcase_44 AC 338 ms
110,412 KB
testcase_45 AC 366 ms
114,404 KB
testcase_46 AC 126 ms
82,016 KB
testcase_47 AC 346 ms
109,256 KB
testcase_48 AC 321 ms
100,836 KB
testcase_49 AC 100 ms
77,184 KB
testcase_50 AC 166 ms
85,220 KB
testcase_51 AC 73 ms
73,996 KB
testcase_52 AC 70 ms
70,656 KB
testcase_53 AC 87 ms
76,708 KB
testcase_54 AC 47 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m = map(int, input().split())

edges = [[] for _ in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    edges[a].append(b)
    edges[b].append(a)

if edges[0] == []:
    for _ in range(n):
        print(0)
    exit()


dist = [-1] * n
dist[0] = 0
queue = deque()
queue.append(0)
while queue:
    v = queue.popleft()
    for nv in edges[v]:
        if dist[nv] == -1:
            dist[nv] = dist[v] + 1
            queue.append(nv)

ans = [0] * n
ans[1] = 1
for d in dist:
    if d >= 1:
        ans[d - 1] += 1
for i in range(2, n):
    ans[i] += ans[i - 2]

print(*ans, sep="\n")
0