結果

問題 No.2888 Mamehinata
ユーザー ra5anchorra5anchor
提出日時 2024-09-13 22:03:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 524 ms / 2,000 ms
コード長 943 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 130,732 KB
最終ジャッジ日時 2024-09-13 22:03:34
合計ジャッジ時間 15,920 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,792 KB
testcase_01 AC 40 ms
53,888 KB
testcase_02 AC 47 ms
53,888 KB
testcase_03 AC 41 ms
54,272 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 41 ms
54,144 KB
testcase_06 AC 44 ms
54,016 KB
testcase_07 AC 41 ms
53,888 KB
testcase_08 AC 40 ms
54,016 KB
testcase_09 AC 42 ms
54,272 KB
testcase_10 AC 40 ms
53,888 KB
testcase_11 AC 40 ms
53,760 KB
testcase_12 AC 41 ms
54,016 KB
testcase_13 AC 151 ms
79,232 KB
testcase_14 AC 137 ms
94,324 KB
testcase_15 AC 296 ms
94,916 KB
testcase_16 AC 410 ms
118,984 KB
testcase_17 AC 125 ms
91,252 KB
testcase_18 AC 212 ms
85,368 KB
testcase_19 AC 442 ms
117,248 KB
testcase_20 AC 387 ms
109,440 KB
testcase_21 AC 374 ms
107,904 KB
testcase_22 AC 170 ms
95,360 KB
testcase_23 AC 216 ms
101,800 KB
testcase_24 AC 400 ms
123,044 KB
testcase_25 AC 289 ms
119,424 KB
testcase_26 AC 318 ms
122,112 KB
testcase_27 AC 190 ms
113,888 KB
testcase_28 AC 134 ms
82,816 KB
testcase_29 AC 237 ms
93,952 KB
testcase_30 AC 439 ms
121,532 KB
testcase_31 AC 379 ms
113,796 KB
testcase_32 AC 309 ms
102,760 KB
testcase_33 AC 346 ms
108,612 KB
testcase_34 AC 303 ms
105,164 KB
testcase_35 AC 272 ms
101,200 KB
testcase_36 AC 492 ms
125,236 KB
testcase_37 AC 524 ms
126,176 KB
testcase_38 AC 185 ms
89,168 KB
testcase_39 AC 401 ms
115,644 KB
testcase_40 AC 515 ms
123,868 KB
testcase_41 AC 146 ms
83,968 KB
testcase_42 AC 419 ms
115,144 KB
testcase_43 AC 312 ms
122,448 KB
testcase_44 AC 360 ms
120,736 KB
testcase_45 AC 366 ms
130,732 KB
testcase_46 AC 121 ms
83,516 KB
testcase_47 AC 331 ms
123,776 KB
testcase_48 AC 342 ms
108,916 KB
testcase_49 AC 96 ms
77,184 KB
testcase_50 AC 187 ms
85,120 KB
testcase_51 AC 71 ms
73,856 KB
testcase_52 AC 67 ms
70,528 KB
testcase_53 AC 83 ms
76,500 KB
testcase_54 AC 41 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
G = [[] for _ in range(N)]
for i in range(M):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)

from collections import deque
que = deque()
visited = [False] * N
dist = [10**18] * N

stt = 0
visited[stt] = True
dist[stt] = 0
que.append(stt)

if len(G[0]) == 0:
    ans = [0]*N
    print(*ans, sep='\n')
    exit()

while que:
    now = que.popleft()
    for to in G[now]:
        if visited[to] == False:
            visited[to] = True
            dist[to] = dist[now] + 1
            que.append(to)

# print(*dist)
A = [0] * N
for i in range(N):
    d = dist[i]
    if d != 10**18:
        A[d] += 1

S = []
nowodd = 0
noweven = 0
for i in range(N):
    if i%2 == 0:
        noweven += A[i]
        S.append(noweven)
    else:
        nowodd += A[i]
        S.append(nowodd)
if i%2 == 0:
    S.append(nowodd)
else:
    S.append(noweven)
print(*S[1:], sep='\n')
0