結果

問題 No.2888 Mamehinata
ユーザー miho-4miho-4
提出日時 2024-09-13 21:42:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 131,328 KB
最終ジャッジ日時 2024-09-13 21:43:09
合計ジャッジ時間 15,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 44 ms
53,504 KB
testcase_04 WA -
testcase_05 AC 45 ms
54,144 KB
testcase_06 AC 45 ms
54,272 KB
testcase_07 AC 43 ms
53,632 KB
testcase_08 AC 44 ms
54,016 KB
testcase_09 AC 44 ms
53,888 KB
testcase_10 AC 44 ms
53,632 KB
testcase_11 WA -
testcase_12 AC 45 ms
53,760 KB
testcase_13 AC 190 ms
88,448 KB
testcase_14 AC 142 ms
87,168 KB
testcase_15 WA -
testcase_16 AC 375 ms
113,664 KB
testcase_17 WA -
testcase_18 AC 251 ms
96,000 KB
testcase_19 AC 416 ms
115,456 KB
testcase_20 AC 384 ms
110,336 KB
testcase_21 AC 376 ms
109,824 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 364 ms
113,408 KB
testcase_25 AC 290 ms
110,464 KB
testcase_26 AC 304 ms
109,184 KB
testcase_27 AC 177 ms
97,280 KB
testcase_28 AC 145 ms
83,840 KB
testcase_29 AC 239 ms
93,440 KB
testcase_30 AC 434 ms
117,504 KB
testcase_31 AC 355 ms
110,848 KB
testcase_32 AC 281 ms
102,016 KB
testcase_33 AC 370 ms
109,568 KB
testcase_34 AC 323 ms
103,936 KB
testcase_35 AC 277 ms
99,968 KB
testcase_36 AC 482 ms
121,088 KB
testcase_37 AC 462 ms
122,240 KB
testcase_38 AC 188 ms
89,984 KB
testcase_39 AC 425 ms
113,408 KB
testcase_40 AC 470 ms
121,984 KB
testcase_41 AC 155 ms
84,992 KB
testcase_42 AC 437 ms
115,072 KB
testcase_43 AC 356 ms
124,928 KB
testcase_44 AC 399 ms
131,328 KB
testcase_45 AC 468 ms
128,512 KB
testcase_46 AC 129 ms
80,896 KB
testcase_47 AC 367 ms
126,584 KB
testcase_48 AC 356 ms
122,240 KB
testcase_49 AC 136 ms
81,280 KB
testcase_50 AC 221 ms
95,360 KB
testcase_51 AC 85 ms
77,056 KB
testcase_52 AC 77 ms
73,344 KB
testcase_53 AC 103 ms
79,104 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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(1)
  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