結果

問題 No.2888 Mamehinata
ユーザー titiatitia
提出日時 2024-09-13 21:37:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 59,392 KB
最終ジャッジ日時 2024-09-13 21:38:27
合計ジャッジ時間 27,431 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 266 ms
18,944 KB
testcase_14 AC 215 ms
22,400 KB
testcase_15 WA -
testcase_16 AC 865 ms
46,464 KB
testcase_17 WA -
testcase_18 AC 458 ms
25,344 KB
testcase_19 AC 935 ms
47,104 KB
testcase_20 AC 814 ms
41,472 KB
testcase_21 AC 796 ms
40,704 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 790 ms
49,280 KB
testcase_25 AC 625 ms
41,856 KB
testcase_26 AC 651 ms
47,104 KB
testcase_27 AC 435 ms
34,816 KB
testcase_28 AC 155 ms
17,664 KB
testcase_29 AC 377 ms
28,288 KB
testcase_30 AC 999 ms
53,120 KB
testcase_31 AC 843 ms
46,592 KB
testcase_32 AC 575 ms
36,352 KB
testcase_33 AC 802 ms
43,776 KB
testcase_34 AC 638 ms
38,528 KB
testcase_35 AC 578 ms
35,328 KB
testcase_36 AC 1,110 ms
58,368 KB
testcase_37 AC 1,134 ms
59,008 KB
testcase_38 AC 305 ms
25,216 KB
testcase_39 AC 908 ms
50,816 KB
testcase_40 AC 1,085 ms
59,392 KB
testcase_41 AC 187 ms
19,712 KB
testcase_42 AC 896 ms
52,224 KB
testcase_43 AC 737 ms
42,624 KB
testcase_44 AC 812 ms
46,464 KB
testcase_45 AC 946 ms
51,328 KB
testcase_46 AC 128 ms
16,128 KB
testcase_47 AC 751 ms
45,824 KB
testcase_48 AC 679 ms
32,768 KB
testcase_49 AC 119 ms
12,928 KB
testcase_50 AC 378 ms
20,608 KB
testcase_51 AC 41 ms
10,880 KB
testcase_52 AC 33 ms
11,008 KB
testcase_53 AC 72 ms
11,648 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import deque

N,M=map(int,input().split())

E=[[] for i in range(N)]

for i in range(M):
    x,y=map(int,input().split())
    x-=1
    y-=1
    E[x].append(y)
    E[y].append(x)

Q=deque()
Q.append(0)
DIS=[1<<30]*N

DIS[0]=0
while Q:
    x=Q.popleft()
    for to in E[x]:
        if DIS[to]>DIS[x]+1:
            DIS[to]=DIS[x]+1
            Q.append(to)

ANS=[0]*(N+1)
for d in DIS:
    if d<N+1:
        ANS[d]+=1

for i in range(2,N+1):
    ANS[i]+=ANS[i-2]

for ans in ANS[1:]:
    print(ans)
0