結果

問題 No.2888 Mamehinata
ユーザー miya145592miya145592
提出日時 2024-09-13 21:32:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,560 KB
最終ジャッジ日時 2024-09-13 21:33:23
合計ジャッジ時間 13,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 45 ms
53,504 KB
testcase_04 WA -
testcase_05 AC 46 ms
53,888 KB
testcase_06 AC 45 ms
53,888 KB
testcase_07 AC 45 ms
53,376 KB
testcase_08 AC 46 ms
53,632 KB
testcase_09 AC 46 ms
53,888 KB
testcase_10 AC 46 ms
53,504 KB
testcase_11 WA -
testcase_12 AC 46 ms
53,504 KB
testcase_13 AC 129 ms
78,720 KB
testcase_14 AC 120 ms
84,480 KB
testcase_15 WA -
testcase_16 AC 321 ms
96,896 KB
testcase_17 WA -
testcase_18 AC 174 ms
82,688 KB
testcase_19 AC 359 ms
97,920 KB
testcase_20 AC 332 ms
93,824 KB
testcase_21 AC 313 ms
92,928 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 312 ms
99,456 KB
testcase_25 AC 238 ms
98,304 KB
testcase_26 AC 258 ms
97,792 KB
testcase_27 AC 161 ms
92,800 KB
testcase_28 AC 120 ms
79,872 KB
testcase_29 AC 187 ms
86,144 KB
testcase_30 AC 376 ms
100,224 KB
testcase_31 AC 311 ms
96,896 KB
testcase_32 AC 241 ms
91,264 KB
testcase_33 AC 294 ms
95,104 KB
testcase_34 AC 259 ms
91,776 KB
testcase_35 AC 234 ms
90,368 KB
testcase_36 AC 389 ms
101,376 KB
testcase_37 AC 417 ms
102,016 KB
testcase_38 AC 163 ms
83,840 KB
testcase_39 AC 339 ms
96,768 KB
testcase_40 AC 416 ms
101,504 KB
testcase_41 AC 135 ms
81,280 KB
testcase_42 AC 350 ms
97,792 KB
testcase_43 AC 261 ms
99,776 KB
testcase_44 AC 281 ms
102,604 KB
testcase_45 AC 311 ms
107,560 KB
testcase_46 AC 114 ms
80,384 KB
testcase_47 AC 271 ms
101,904 KB
testcase_48 AC 258 ms
94,508 KB
testcase_49 AC 85 ms
76,544 KB
testcase_50 AC 121 ms
82,432 KB
testcase_51 AC 63 ms
66,176 KB
testcase_52 AC 60 ms
63,616 KB
testcase_53 AC 78 ms
76,800 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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