結果

問題 No.2888 Mamehinata
ユーザー nessiennessien
提出日時 2024-11-15 16:24:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 680 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 120,284 KB
最終ジャッジ日時 2024-11-15 16:24:54
合計ジャッジ時間 17,232 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 43 ms
53,248 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 43 ms
54,144 KB
testcase_04 WA -
testcase_05 AC 45 ms
53,888 KB
testcase_06 AC 44 ms
54,016 KB
testcase_07 AC 45 ms
53,760 KB
testcase_08 AC 44 ms
53,888 KB
testcase_09 AC 45 ms
54,016 KB
testcase_10 AC 44 ms
53,376 KB
testcase_11 WA -
testcase_12 AC 45 ms
53,760 KB
testcase_13 AC 166 ms
79,744 KB
testcase_14 AC 151 ms
89,984 KB
testcase_15 WA -
testcase_16 AC 347 ms
109,952 KB
testcase_17 WA -
testcase_18 AC 224 ms
84,480 KB
testcase_19 AC 447 ms
108,672 KB
testcase_20 AC 357 ms
102,784 KB
testcase_21 AC 342 ms
101,120 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 353 ms
112,512 KB
testcase_25 AC 280 ms
111,744 KB
testcase_26 AC 328 ms
111,360 KB
testcase_27 AC 189 ms
106,496 KB
testcase_28 AC 142 ms
81,408 KB
testcase_29 AC 220 ms
90,112 KB
testcase_30 AC 437 ms
112,000 KB
testcase_31 AC 341 ms
105,984 KB
testcase_32 AC 264 ms
96,256 KB
testcase_33 AC 328 ms
103,552 KB
testcase_34 AC 314 ms
98,816 KB
testcase_35 AC 253 ms
95,744 KB
testcase_36 AC 459 ms
114,944 KB
testcase_37 AC 487 ms
115,968 KB
testcase_38 AC 182 ms
87,424 KB
testcase_39 AC 371 ms
107,648 KB
testcase_40 AC 478 ms
114,944 KB
testcase_41 AC 148 ms
82,688 KB
testcase_42 AC 385 ms
108,800 KB
testcase_43 AC 300 ms
114,096 KB
testcase_44 AC 344 ms
115,540 KB
testcase_45 AC 354 ms
120,284 KB
testcase_46 AC 128 ms
81,792 KB
testcase_47 AC 315 ms
113,464 KB
testcase_48 AC 305 ms
103,388 KB
testcase_49 AC 109 ms
77,312 KB
testcase_50 AC 176 ms
85,504 KB
testcase_51 AC 81 ms
73,984 KB
testcase_52 AC 76 ms
70,400 KB
testcase_53 AC 96 ms
76,928 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

G = [list() for i in range(N+1)]
for i in range(M):
	u, v = map(int,input().split())
	G[u].append(v)
	G[v].append(u)
	
d = [-1]*(N+1)
d[1] = 0
dist = [0]*(N+1) 
dist[0] += 1
Q = deque()
Q.append(1)
while len(Q) >= 1:
	x = Q.popleft()
	for nex in G[x]:
		if d[nex] == -1:
			d[nex] = d[x] + 1 
			dist[d[nex]] += 1 
			Q.append(nex)

ans = [0]
for i in range(1,N+1):
  if i % 2 == 1:
    if i == 1:
      ans.append(dist[i])
    else:
      ans.append(ans[i-2] + dist[i])
  else:
    if i == 2:
      ans.append(dist[i] + dist[0])
    else:
      ans.append(ans[i-2] + dist[i])

for i in range(1,N+1):
  print(ans[i])
0