結果

問題 No.2888 Mamehinata
ユーザー miya145592miya145592
提出日時 2024-09-13 21:42:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 107,276 KB
最終ジャッジ日時 2024-09-13 21:42:40
合計ジャッジ時間 13,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 45 ms
53,632 KB
testcase_03 AC 43 ms
54,144 KB
testcase_04 AC 42 ms
53,888 KB
testcase_05 AC 43 ms
54,016 KB
testcase_06 AC 42 ms
53,760 KB
testcase_07 AC 41 ms
54,016 KB
testcase_08 AC 42 ms
54,144 KB
testcase_09 AC 43 ms
53,888 KB
testcase_10 AC 42 ms
53,888 KB
testcase_11 AC 42 ms
54,016 KB
testcase_12 AC 42 ms
54,020 KB
testcase_13 AC 117 ms
78,720 KB
testcase_14 AC 122 ms
84,600 KB
testcase_15 AC 220 ms
90,048 KB
testcase_16 AC 292 ms
97,024 KB
testcase_17 AC 99 ms
84,440 KB
testcase_18 AC 157 ms
82,688 KB
testcase_19 AC 362 ms
98,304 KB
testcase_20 AC 306 ms
93,824 KB
testcase_21 AC 293 ms
93,312 KB
testcase_22 AC 135 ms
88,192 KB
testcase_23 AC 167 ms
92,288 KB
testcase_24 AC 304 ms
99,456 KB
testcase_25 AC 223 ms
98,012 KB
testcase_26 AC 252 ms
97,536 KB
testcase_27 AC 148 ms
92,988 KB
testcase_28 AC 112 ms
80,276 KB
testcase_29 AC 194 ms
86,272 KB
testcase_30 AC 369 ms
99,968 KB
testcase_31 AC 298 ms
96,896 KB
testcase_32 AC 224 ms
91,008 KB
testcase_33 AC 291 ms
95,220 KB
testcase_34 AC 250 ms
91,392 KB
testcase_35 AC 215 ms
90,240 KB
testcase_36 AC 381 ms
101,376 KB
testcase_37 AC 409 ms
101,888 KB
testcase_38 AC 161 ms
83,840 KB
testcase_39 AC 325 ms
96,960 KB
testcase_40 AC 399 ms
101,376 KB
testcase_41 AC 122 ms
81,332 KB
testcase_42 AC 368 ms
97,920 KB
testcase_43 AC 245 ms
99,916 KB
testcase_44 AC 266 ms
102,604 KB
testcase_45 AC 292 ms
107,276 KB
testcase_46 AC 103 ms
80,240 KB
testcase_47 AC 274 ms
101,636 KB
testcase_48 AC 266 ms
94,200 KB
testcase_49 AC 85 ms
77,056 KB
testcase_50 AC 120 ms
82,176 KB
testcase_51 AC 62 ms
65,920 KB
testcase_52 AC 59 ms
64,000 KB
testcase_53 AC 78 ms
76,544 KB
testcase_54 AC 47 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.readline
N, M = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    u-=1
    v-=1
    G[u].append(v)
    G[v].append(u)
if len(G[0])==0:
    for i in range(1, N+1):
        print(0)
    exit()
deq = deque()
deq.append(0)
INF = 10**9
dist = [INF for _ in range(N)]
dist[0] = 0
while deq:
    v = deq.popleft()
    for nv in G[v]:
        if dist[nv]>dist[v]+1:
            dist[nv] = dist[v]+1
            deq.append(nv)
ans = [0 for _ in range(N+1)]
for i in range(N):
    if dist[i]==INF:
        continue
    ans[dist[i]] += 1
for i in range(1, N+1):
    if i>=2:
        ans[i] += ans[i-2]
    print(ans[i])
0