結果

問題 No.2888 Mamehinata
ユーザー flippergoflippergo
提出日時 2024-11-15 08:05:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 718 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 124,976 KB
最終ジャッジ日時 2024-11-15 08:05:31
合計ジャッジ時間 19,692 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,272 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 WA -
testcase_05 AC 44 ms
54,656 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 42 ms
54,144 KB
testcase_08 AC 42 ms
54,272 KB
testcase_09 AC 43 ms
54,144 KB
testcase_10 AC 43 ms
54,016 KB
testcase_11 WA -
testcase_12 AC 44 ms
54,016 KB
testcase_13 AC 160 ms
79,964 KB
testcase_14 AC 148 ms
92,288 KB
testcase_15 WA -
testcase_16 AC 425 ms
108,032 KB
testcase_17 WA -
testcase_18 AC 227 ms
84,320 KB
testcase_19 AC 478 ms
104,796 KB
testcase_20 AC 419 ms
99,072 KB
testcase_21 AC 433 ms
98,944 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 431 ms
115,028 KB
testcase_25 AC 349 ms
114,688 KB
testcase_26 AC 356 ms
114,432 KB
testcase_27 AC 215 ms
114,792 KB
testcase_28 AC 147 ms
81,904 KB
testcase_29 AC 238 ms
89,180 KB
testcase_30 AC 531 ms
110,464 KB
testcase_31 AC 459 ms
104,448 KB
testcase_32 AC 331 ms
96,256 KB
testcase_33 AC 425 ms
101,440 KB
testcase_34 AC 348 ms
96,708 KB
testcase_35 AC 320 ms
94,352 KB
testcase_36 AC 571 ms
114,336 KB
testcase_37 AC 553 ms
114,660 KB
testcase_38 AC 227 ms
90,908 KB
testcase_39 AC 499 ms
121,476 KB
testcase_40 AC 602 ms
124,976 KB
testcase_41 AC 167 ms
84,976 KB
testcase_42 AC 500 ms
117,484 KB
testcase_43 AC 345 ms
105,680 KB
testcase_44 AC 380 ms
107,904 KB
testcase_45 AC 419 ms
114,560 KB
testcase_46 AC 126 ms
81,532 KB
testcase_47 AC 386 ms
108,180 KB
testcase_48 AC 355 ms
99,364 KB
testcase_49 AC 101 ms
77,568 KB
testcase_50 AC 169 ms
85,348 KB
testcase_51 AC 72 ms
74,092 KB
testcase_52 AC 70 ms
70,272 KB
testcase_53 AC 88 ms
76,540 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
G = {i:[] for i in range(1,N+1)}
for _ in range(M):
    a,b = map(int,input().split())
    G[a].append(b)
    G[b].append(a)
dist = [-1]*(N+1)
dist[1] = 0
que = deque([1])
while que:
    x = que.popleft()
    for y in G[x]:
        if dist[y]==-1:
            dist[y] = dist[x]+1
            que.append(y)
n = max(dist)
C = {d:0 for d in range(n+1)}
C[-1] = 0
for i in range(1,N+1):
    C[dist[i]] += 1
cnt0 = 1
cnt1 = 0
for i in range(1,N+1):
    if i>n:break
    if i%2==0:
        cnt0 += C[i]
        print(cnt0)
    else:
        cnt1 += C[i]
        print(cnt1)
for i in range(n+1,N+1):
    if i%2==0:
        print(cnt0)
    else:
        print(cnt1)
0