結果

問題 No.2888 Mamehinata
ユーザー loop0919loop0919
提出日時 2024-09-13 22:00:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 872 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 135,496 KB
最終ジャッジ日時 2024-09-13 22:01:06
合計ジャッジ時間 16,257 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 43 ms
53,504 KB
testcase_04 WA -
testcase_05 AC 45 ms
54,016 KB
testcase_06 AC 44 ms
54,400 KB
testcase_07 AC 44 ms
54,400 KB
testcase_08 AC 45 ms
54,272 KB
testcase_09 AC 45 ms
53,760 KB
testcase_10 AC 44 ms
53,632 KB
testcase_11 WA -
testcase_12 AC 44 ms
54,272 KB
testcase_13 AC 172 ms
81,536 KB
testcase_14 AC 166 ms
91,408 KB
testcase_15 WA -
testcase_16 AC 409 ms
123,332 KB
testcase_17 WA -
testcase_18 AC 244 ms
85,120 KB
testcase_19 AC 481 ms
120,596 KB
testcase_20 AC 419 ms
111,872 KB
testcase_21 AC 406 ms
111,360 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 393 ms
128,832 KB
testcase_25 AC 333 ms
129,024 KB
testcase_26 AC 345 ms
127,272 KB
testcase_27 AC 221 ms
123,392 KB
testcase_28 AC 158 ms
82,944 KB
testcase_29 AC 242 ms
95,488 KB
testcase_30 AC 455 ms
125,868 KB
testcase_31 AC 393 ms
116,084 KB
testcase_32 AC 308 ms
105,472 KB
testcase_33 AC 373 ms
112,472 KB
testcase_34 AC 307 ms
107,268 KB
testcase_35 AC 306 ms
103,296 KB
testcase_36 AC 472 ms
123,748 KB
testcase_37 AC 495 ms
131,436 KB
testcase_38 AC 212 ms
90,616 KB
testcase_39 AC 416 ms
120,448 KB
testcase_40 AC 506 ms
129,876 KB
testcase_41 AC 180 ms
85,376 KB
testcase_42 AC 424 ms
122,628 KB
testcase_43 AC 353 ms
125,704 KB
testcase_44 AC 375 ms
125,112 KB
testcase_45 AC 422 ms
135,496 KB
testcase_46 AC 132 ms
82,560 KB
testcase_47 AC 352 ms
122,420 KB
testcase_48 AC 360 ms
111,444 KB
testcase_49 AC 103 ms
77,056 KB
testcase_50 AC 170 ms
85,376 KB
testcase_51 AC 81 ms
76,672 KB
testcase_52 AC 84 ms
71,808 KB
testcase_53 AC 91 ms
76,672 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from itertools import accumulate

INF = float("inf")

N, M = map(int, input().split())
graph = [[] for _ in range(N)]

for _ in range(M):
    u, v = map(lambda x: int(x) - 1, input().split())
    graph[u].append(v)
    graph[v].append(u)

dist = [INF] * N
dist[0] = 0
que = deque([0])

while que:
    now_v = que.popleft()

    for next_v in graph[now_v]:
        if dist[next_v] != INF:
            continue
        dist[next_v] = dist[now_v] + 1
        que.append(next_v)

odd = [0] * (N + 1)
even = [0] * (N + 1)

for i in range(N):
    if dist[i] == INF:
        continue

    if dist[i] % 2 == 0:
        even[dist[i]] += 1
    else:
        odd[dist[i]] += 1

acc_odd = list(accumulate(odd))
acc_even = list(accumulate(even))

for i in range(1, N + 1):
    if i % 2 == 0:
        print(acc_even[i])
    else:
        print(acc_odd[i])
0