結果

問題 No.2888 Mamehinata
ユーザー rlangevinrlangevin
提出日時 2024-09-30 08:56:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 715 bytes
コンパイル時間 764 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,452 KB
最終ジャッジ日時 2024-09-30 08:57:06
合計ジャッジ時間 14,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 39 ms
53,504 KB
testcase_02 AC 38 ms
53,800 KB
testcase_03 AC 38 ms
53,888 KB
testcase_04 WA -
testcase_05 AC 40 ms
53,760 KB
testcase_06 AC 41 ms
53,888 KB
testcase_07 AC 40 ms
53,760 KB
testcase_08 AC 40 ms
53,632 KB
testcase_09 AC 40 ms
54,016 KB
testcase_10 AC 43 ms
53,760 KB
testcase_11 WA -
testcase_12 AC 41 ms
53,888 KB
testcase_13 AC 110 ms
79,036 KB
testcase_14 AC 132 ms
84,480 KB
testcase_15 WA -
testcase_16 AC 288 ms
96,640 KB
testcase_17 WA -
testcase_18 AC 157 ms
84,096 KB
testcase_19 AC 370 ms
97,792 KB
testcase_20 AC 300 ms
93,440 KB
testcase_21 AC 285 ms
92,800 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 310 ms
99,740 KB
testcase_25 AC 215 ms
97,628 KB
testcase_26 AC 233 ms
97,408 KB
testcase_27 AC 143 ms
92,288 KB
testcase_28 AC 101 ms
80,076 KB
testcase_29 AC 182 ms
85,760 KB
testcase_30 AC 337 ms
99,828 KB
testcase_31 AC 306 ms
96,816 KB
testcase_32 AC 218 ms
90,880 KB
testcase_33 AC 300 ms
94,684 KB
testcase_34 AC 238 ms
91,264 KB
testcase_35 AC 199 ms
90,148 KB
testcase_36 AC 377 ms
101,120 KB
testcase_37 AC 425 ms
101,504 KB
testcase_38 AC 166 ms
89,216 KB
testcase_39 AC 366 ms
119,484 KB
testcase_40 AC 459 ms
121,452 KB
testcase_41 AC 126 ms
83,584 KB
testcase_42 AC 370 ms
114,016 KB
testcase_43 AC 235 ms
100,400 KB
testcase_44 AC 275 ms
101,840 KB
testcase_45 AC 284 ms
107,760 KB
testcase_46 AC 95 ms
80,384 KB
testcase_47 AC 255 ms
101,524 KB
testcase_48 AC 240 ms
95,008 KB
testcase_49 AC 66 ms
76,504 KB
testcase_50 AC 128 ms
82,048 KB
testcase_51 AC 51 ms
65,536 KB
testcase_52 AC 49 ms
63,104 KB
testcase_53 AC 61 ms
76,160 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import deque
def bfs(G, s):
    Q = deque([s])
    N = len(G)
    dist = [-1] * N
    par = [-1] * N
    dist[s] = 0
    while Q:
        u = Q.popleft()
        for v in G[u]:
            if dist[v] != -1:
                continue
            dist[v] = dist[u] + 1
            par[v] = u
            Q.append(v)

    return dist


N, M = map(int, input().split())
G = [[] for i in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    G[u].append(v)
    G[v].append(u)
    
ans = [1, 0]
dist = bfs(G, 0)
from collections import *
C = Counter(dist)
for i in range(1, N + 1):
    ans[i % 2] += C[i]
    print(ans[i % 2])
0