結果

問題 No.2888 Mamehinata
ユーザー moon17moon17
提出日時 2024-09-13 23:06:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 402 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 154,408 KB
最終ジャッジ日時 2024-09-13 23:07:19
合計ジャッジ時間 20,518 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,544 KB
testcase_01 AC 45 ms
54,144 KB
testcase_02 AC 46 ms
54,272 KB
testcase_03 AC 44 ms
54,272 KB
testcase_04 WA -
testcase_05 AC 46 ms
53,888 KB
testcase_06 AC 46 ms
54,272 KB
testcase_07 AC 45 ms
54,016 KB
testcase_08 AC 50 ms
54,144 KB
testcase_09 AC 46 ms
54,144 KB
testcase_10 AC 45 ms
54,656 KB
testcase_11 WA -
testcase_12 AC 45 ms
54,144 KB
testcase_13 AC 179 ms
91,136 KB
testcase_14 AC 129 ms
87,092 KB
testcase_15 WA -
testcase_16 AC 521 ms
118,724 KB
testcase_17 WA -
testcase_18 AC 252 ms
101,780 KB
testcase_19 AC 585 ms
124,548 KB
testcase_20 AC 498 ms
117,500 KB
testcase_21 AC 479 ms
116,704 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 455 ms
116,844 KB
testcase_25 AC 260 ms
110,824 KB
testcase_26 AC 371 ms
110,996 KB
testcase_27 AC 160 ms
95,720 KB
testcase_28 AC 185 ms
84,352 KB
testcase_29 AC 283 ms
95,204 KB
testcase_30 AC 577 ms
123,016 KB
testcase_31 AC 464 ms
114,092 KB
testcase_32 AC 358 ms
102,840 KB
testcase_33 AC 463 ms
112,288 KB
testcase_34 AC 383 ms
106,796 KB
testcase_35 AC 346 ms
101,688 KB
testcase_36 AC 606 ms
126,348 KB
testcase_37 AC 602 ms
129,620 KB
testcase_38 AC 193 ms
96,896 KB
testcase_39 AC 452 ms
142,272 KB
testcase_40 AC 564 ms
146,636 KB
testcase_41 AC 154 ms
88,320 KB
testcase_42 AC 458 ms
138,640 KB
testcase_43 AC 486 ms
134,864 KB
testcase_44 AC 496 ms
144,844 KB
testcase_45 AC 541 ms
154,408 KB
testcase_46 AC 180 ms
84,864 KB
testcase_47 AC 485 ms
141,588 KB
testcase_48 AC 423 ms
131,188 KB
testcase_49 AC 110 ms
84,096 KB
testcase_50 AC 213 ms
101,480 KB
testcase_51 AC 63 ms
72,064 KB
testcase_52 AC 60 ms
66,688 KB
testcase_53 AC 86 ms
78,848 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
t=0
d=[1,0]
for i in range(n):
  t^=1
  d[(i+1)%2]+=c[i+1]
  print(d[t])
0