結果

問題 No.2888 Mamehinata
ユーザー miho-4miho-4
提出日時 2024-09-13 21:38:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 131,696 KB
最終ジャッジ日時 2024-09-13 21:38:45
合計ジャッジ時間 15,630 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,888 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 43 ms
54,016 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 WA -
testcase_05 AC 51 ms
54,144 KB
testcase_06 AC 44 ms
54,016 KB
testcase_07 AC 48 ms
54,144 KB
testcase_08 AC 42 ms
54,400 KB
testcase_09 AC 43 ms
54,464 KB
testcase_10 AC 43 ms
54,136 KB
testcase_11 WA -
testcase_12 AC 43 ms
54,656 KB
testcase_13 AC 185 ms
88,336 KB
testcase_14 AC 138 ms
87,552 KB
testcase_15 WA -
testcase_16 AC 400 ms
113,716 KB
testcase_17 WA -
testcase_18 AC 265 ms
95,868 KB
testcase_19 AC 450 ms
115,456 KB
testcase_20 AC 363 ms
110,464 KB
testcase_21 AC 380 ms
109,824 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 338 ms
113,424 KB
testcase_25 AC 271 ms
110,464 KB
testcase_26 AC 332 ms
109,440 KB
testcase_27 AC 176 ms
97,280 KB
testcase_28 AC 141 ms
84,108 KB
testcase_29 AC 211 ms
93,440 KB
testcase_30 AC 417 ms
117,376 KB
testcase_31 AC 353 ms
111,104 KB
testcase_32 AC 300 ms
102,016 KB
testcase_33 AC 326 ms
109,808 KB
testcase_34 AC 317 ms
104,192 KB
testcase_35 AC 262 ms
100,352 KB
testcase_36 AC 479 ms
121,216 KB
testcase_37 AC 479 ms
122,112 KB
testcase_38 AC 186 ms
90,136 KB
testcase_39 AC 403 ms
113,796 KB
testcase_40 AC 503 ms
122,112 KB
testcase_41 AC 158 ms
85,108 KB
testcase_42 AC 384 ms
115,116 KB
testcase_43 AC 354 ms
125,140 KB
testcase_44 AC 446 ms
131,696 KB
testcase_45 AC 435 ms
128,640 KB
testcase_46 AC 126 ms
81,108 KB
testcase_47 AC 381 ms
126,560 KB
testcase_48 AC 348 ms
122,496 KB
testcase_49 AC 122 ms
81,332 KB
testcase_50 AC 223 ms
95,488 KB
testcase_51 AC 82 ms
77,168 KB
testcase_52 AC 74 ms
72,704 KB
testcase_53 AC 101 ms
79,352 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)

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