結果

問題 No.2888 Mamehinata
ユーザー miho-4miho-4
提出日時 2024-09-13 21:44:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 957 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 131,712 KB
最終ジャッジ日時 2024-09-13 21:44:21
合計ジャッジ時間 16,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 41 ms
54,016 KB
testcase_03 AC 47 ms
54,144 KB
testcase_04 AC 42 ms
54,068 KB
testcase_05 AC 43 ms
54,144 KB
testcase_06 AC 44 ms
53,888 KB
testcase_07 AC 43 ms
53,888 KB
testcase_08 AC 43 ms
53,760 KB
testcase_09 AC 42 ms
53,888 KB
testcase_10 AC 42 ms
53,632 KB
testcase_11 AC 43 ms
53,632 KB
testcase_12 AC 43 ms
53,888 KB
testcase_13 AC 184 ms
88,192 KB
testcase_14 AC 139 ms
87,296 KB
testcase_15 AC 319 ms
107,264 KB
testcase_16 AC 375 ms
113,476 KB
testcase_17 AC 131 ms
86,352 KB
testcase_18 AC 241 ms
95,616 KB
testcase_19 AC 431 ms
115,456 KB
testcase_20 AC 380 ms
110,336 KB
testcase_21 AC 369 ms
109,920 KB
testcase_22 AC 170 ms
93,824 KB
testcase_23 AC 235 ms
100,480 KB
testcase_24 AC 354 ms
113,468 KB
testcase_25 AC 279 ms
110,720 KB
testcase_26 AC 306 ms
109,184 KB
testcase_27 AC 195 ms
97,280 KB
testcase_28 AC 144 ms
83,840 KB
testcase_29 AC 225 ms
93,440 KB
testcase_30 AC 426 ms
117,504 KB
testcase_31 AC 375 ms
110,848 KB
testcase_32 AC 278 ms
101,632 KB
testcase_33 AC 340 ms
109,568 KB
testcase_34 AC 291 ms
103,936 KB
testcase_35 AC 291 ms
100,224 KB
testcase_36 AC 446 ms
121,032 KB
testcase_37 AC 470 ms
122,368 KB
testcase_38 AC 211 ms
90,112 KB
testcase_39 AC 386 ms
113,664 KB
testcase_40 AC 463 ms
121,856 KB
testcase_41 AC 198 ms
85,248 KB
testcase_42 AC 406 ms
115,072 KB
testcase_43 AC 374 ms
124,928 KB
testcase_44 AC 437 ms
131,712 KB
testcase_45 AC 448 ms
128,768 KB
testcase_46 AC 137 ms
81,024 KB
testcase_47 AC 400 ms
126,592 KB
testcase_48 AC 370 ms
122,112 KB
testcase_49 AC 133 ms
81,280 KB
testcase_50 AC 238 ms
95,744 KB
testcase_51 AC 99 ms
77,056 KB
testcase_52 AC 86 ms
72,960 KB
testcase_53 AC 101 ms
79,232 KB
testcase_54 AC 43 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,m=map(int,input().split())
edge=[list(map(int,input().split())) for _ in range(m)]
E=[[] for _ in range(n+1)]
for a,b in edge:
  E[a].append(b)
  E[b].append(a)

if len(E[1])==0:
  for _ in range(n):
    print(0)
  exit()

dist=[0]*(n+1)
dist[0]=1
D=[10**6]*(n+1)
D[1]=0
q=deque([1])
while q:
  x=q.popleft()
  for e in E[x]:
    if D[x]+1<D[e]:
      D[e]=D[x]+1
      dist[D[e]]+=1
      q.append(e)

odd,even=0,1
for i in range(1,n+1):
  if i%2==1:
    odd+=dist[i]
    print(odd)
  else:
    even+=dist[i]
    print(even)
0