結果

問題 No.2888 Mamehinata
ユーザー ra5anchorra5anchor
提出日時 2024-09-13 21:55:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 852 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 130,856 KB
最終ジャッジ日時 2024-09-13 21:56:03
合計ジャッジ時間 16,157 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 WA -
testcase_05 AC 44 ms
54,272 KB
testcase_06 AC 48 ms
53,760 KB
testcase_07 AC 42 ms
53,632 KB
testcase_08 AC 43 ms
54,400 KB
testcase_09 AC 42 ms
54,144 KB
testcase_10 AC 42 ms
54,144 KB
testcase_11 WA -
testcase_12 AC 42 ms
54,272 KB
testcase_13 AC 158 ms
79,284 KB
testcase_14 AC 157 ms
94,336 KB
testcase_15 WA -
testcase_16 AC 414 ms
119,040 KB
testcase_17 WA -
testcase_18 AC 239 ms
85,060 KB
testcase_19 AC 504 ms
117,088 KB
testcase_20 AC 398 ms
109,696 KB
testcase_21 AC 405 ms
107,648 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 397 ms
123,308 KB
testcase_25 AC 314 ms
119,256 KB
testcase_26 AC 348 ms
121,984 KB
testcase_27 AC 195 ms
113,972 KB
testcase_28 AC 137 ms
82,616 KB
testcase_29 AC 209 ms
93,824 KB
testcase_30 AC 495 ms
121,712 KB
testcase_31 AC 385 ms
113,792 KB
testcase_32 AC 294 ms
102,508 KB
testcase_33 AC 411 ms
110,720 KB
testcase_34 AC 285 ms
104,708 KB
testcase_35 AC 265 ms
101,224 KB
testcase_36 AC 504 ms
125,056 KB
testcase_37 AC 477 ms
126,208 KB
testcase_38 AC 193 ms
89,292 KB
testcase_39 AC 427 ms
115,456 KB
testcase_40 AC 473 ms
123,520 KB
testcase_41 AC 147 ms
83,860 KB
testcase_42 AC 436 ms
114,780 KB
testcase_43 AC 312 ms
122,424 KB
testcase_44 AC 331 ms
120,348 KB
testcase_45 AC 370 ms
130,856 KB
testcase_46 AC 137 ms
83,328 KB
testcase_47 AC 343 ms
123,896 KB
testcase_48 AC 336 ms
108,656 KB
testcase_49 AC 111 ms
76,928 KB
testcase_50 AC 179 ms
84,992 KB
testcase_51 AC 84 ms
73,728 KB
testcase_52 AC 80 ms
70,272 KB
testcase_53 AC 98 ms
76,288 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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] = 0
dist[stt] = 0
que.append(stt)

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)

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