結果

問題 No.2888 Mamehinata
ユーザー adapchiadapchi
提出日時 2024-09-13 21:29:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 129,408 KB
最終ジャッジ日時 2024-09-13 21:29:22
合計ジャッジ時間 17,143 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,888 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 WA -
testcase_05 AC 43 ms
54,272 KB
testcase_06 AC 43 ms
54,272 KB
testcase_07 AC 43 ms
54,144 KB
testcase_08 AC 44 ms
54,272 KB
testcase_09 AC 45 ms
54,016 KB
testcase_10 AC 47 ms
53,760 KB
testcase_11 WA -
testcase_12 AC 43 ms
54,272 KB
testcase_13 AC 189 ms
81,528 KB
testcase_14 AC 161 ms
91,776 KB
testcase_15 WA -
testcase_16 AC 440 ms
111,268 KB
testcase_17 WA -
testcase_18 AC 257 ms
84,608 KB
testcase_19 AC 517 ms
110,480 KB
testcase_20 AC 440 ms
105,344 KB
testcase_21 AC 429 ms
103,168 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 426 ms
116,608 KB
testcase_25 AC 364 ms
114,816 KB
testcase_26 AC 364 ms
114,432 KB
testcase_27 AC 224 ms
109,956 KB
testcase_28 AC 155 ms
83,164 KB
testcase_29 AC 243 ms
92,156 KB
testcase_30 AC 517 ms
114,176 KB
testcase_31 AC 416 ms
107,904 KB
testcase_32 AC 311 ms
98,560 KB
testcase_33 AC 388 ms
105,600 KB
testcase_34 AC 333 ms
101,120 KB
testcase_35 AC 303 ms
97,792 KB
testcase_36 AC 523 ms
117,248 KB
testcase_37 AC 576 ms
118,528 KB
testcase_38 AC 204 ms
88,952 KB
testcase_39 AC 483 ms
111,128 KB
testcase_40 AC 571 ms
117,888 KB
testcase_41 AC 165 ms
84,988 KB
testcase_42 AC 452 ms
111,988 KB
testcase_43 AC 350 ms
116,064 KB
testcase_44 AC 388 ms
122,080 KB
testcase_45 AC 439 ms
129,408 KB
testcase_46 AC 140 ms
83,072 KB
testcase_47 AC 382 ms
120,820 KB
testcase_48 AC 400 ms
108,916 KB
testcase_49 AC 110 ms
77,440 KB
testcase_50 AC 200 ms
91,344 KB
testcase_51 AC 82 ms
76,668 KB
testcase_52 AC 74 ms
73,088 KB
testcase_53 AC 94 ms
76,928 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())

G = [[] for _ in range(N)]
for _ in range(M):
  u, v = [int(x) - 1 for x in input().split()]
  G[u].append(v)
  G[v].append(u)
  
que = deque([0])
dist = [-1] * N
dist[0] = 0

while que:
  u = que.popleft()
  for v in G[u]:
    if dist[v] == -1:
      dist[v] = dist[u] + 1
      que.append(v)
      
sm = [[0, 0] for _ in range(N + 1)]
for i in range(N):
  if dist[i] != -1:
    sm[dist[i]][dist[i] % 2] += 1
for i in range(1, N + 1):
  for j in range(2):
    sm[i][j] += sm[i - 1][j]
    
for i in range(1, N + 1):
  print(sm[i][i % 2])
0