結果

問題 No.2888 Mamehinata
ユーザー moon17moon17
提出日時 2024-09-13 23:22:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 652 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 154,276 KB
最終ジャッジ日時 2024-09-13 23:23:00
合計ジャッジ時間 19,434 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,016 KB
testcase_01 AC 48 ms
54,272 KB
testcase_02 AC 47 ms
54,016 KB
testcase_03 AC 48 ms
54,272 KB
testcase_04 AC 48 ms
54,144 KB
testcase_05 AC 49 ms
54,400 KB
testcase_06 AC 49 ms
54,016 KB
testcase_07 AC 47 ms
53,760 KB
testcase_08 AC 49 ms
54,272 KB
testcase_09 AC 49 ms
54,784 KB
testcase_10 AC 48 ms
53,888 KB
testcase_11 AC 48 ms
54,144 KB
testcase_12 AC 49 ms
54,400 KB
testcase_13 AC 189 ms
91,136 KB
testcase_14 AC 135 ms
86,656 KB
testcase_15 AC 288 ms
114,792 KB
testcase_16 AC 529 ms
118,356 KB
testcase_17 AC 126 ms
86,656 KB
testcase_18 AC 262 ms
101,532 KB
testcase_19 AC 605 ms
124,544 KB
testcase_20 AC 490 ms
117,388 KB
testcase_21 AC 494 ms
116,592 KB
testcase_22 AC 172 ms
95,000 KB
testcase_23 AC 212 ms
101,844 KB
testcase_24 AC 465 ms
117,228 KB
testcase_25 AC 288 ms
111,260 KB
testcase_26 AC 357 ms
110,740 KB
testcase_27 AC 173 ms
95,872 KB
testcase_28 AC 230 ms
84,352 KB
testcase_29 AC 304 ms
95,480 KB
testcase_30 AC 565 ms
122,892 KB
testcase_31 AC 481 ms
113,692 KB
testcase_32 AC 376 ms
103,224 KB
testcase_33 AC 482 ms
112,600 KB
testcase_34 AC 426 ms
106,564 KB
testcase_35 AC 368 ms
101,820 KB
testcase_36 AC 611 ms
126,396 KB
testcase_37 AC 652 ms
129,852 KB
testcase_38 AC 211 ms
96,512 KB
testcase_39 AC 500 ms
141,864 KB
testcase_40 AC 552 ms
146,124 KB
testcase_41 AC 165 ms
88,064 KB
testcase_42 AC 504 ms
138,780 KB
testcase_43 AC 509 ms
135,616 KB
testcase_44 AC 529 ms
144,768 KB
testcase_45 AC 560 ms
154,276 KB
testcase_46 AC 163 ms
84,992 KB
testcase_47 AC 502 ms
141,644 KB
testcase_48 AC 437 ms
131,820 KB
testcase_49 AC 119 ms
84,352 KB
testcase_50 AC 207 ms
101,868 KB
testcase_51 AC 74 ms
72,064 KB
testcase_52 AC 67 ms
67,072 KB
testcase_53 AC 95 ms
78,848 KB
testcase_54 AC 48 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import*
from heapq import*
(n,m),*e=[[*map(int,s.split())]for s in open(0)]
g=[[]for _ in range(n)]
for u,v in e:
  g[u-1]+=v-1,
  g[v-1]+=u-1,
q=[(0,0)]
INF=1<<60
s=[INF]*n
s[0]=0
while q:
  c,p=heappop(q)
  if s[p]<c:
    continue
  for v in g[p]:
    if s[v]>c+1:
      s[v]=c+1
      q+=(c+1,v),
c=Counter(s)
if c[1]==0:
  for _ in range(n):
    print(0)
  exit()
t=0
d=[1,0]
for i in range(1,n+1):
  d[i%2]+=c[i]
  print(d[i%2])
0