結果

問題 No.2888 Mamehinata
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-13 21:36:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 806 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 153,128 KB
最終ジャッジ日時 2024-09-13 21:36:56
合計ジャッジ時間 17,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 43 ms
52,608 KB
testcase_06 AC 43 ms
52,608 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 43 ms
52,096 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 WA -
testcase_12 AC 42 ms
52,224 KB
testcase_13 AC 173 ms
80,896 KB
testcase_14 AC 167 ms
95,232 KB
testcase_15 WA -
testcase_16 AC 438 ms
138,624 KB
testcase_17 WA -
testcase_18 AC 247 ms
86,656 KB
testcase_19 AC 536 ms
139,776 KB
testcase_20 AC 447 ms
123,904 KB
testcase_21 AC 451 ms
122,112 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 442 ms
141,092 KB
testcase_25 AC 368 ms
135,808 KB
testcase_26 AC 362 ms
139,392 KB
testcase_27 AC 224 ms
129,664 KB
testcase_28 AC 152 ms
84,608 KB
testcase_29 AC 255 ms
104,064 KB
testcase_30 AC 536 ms
148,736 KB
testcase_31 AC 428 ms
135,040 KB
testcase_32 AC 318 ms
109,952 KB
testcase_33 AC 432 ms
124,092 KB
testcase_34 AC 348 ms
119,576 KB
testcase_35 AC 322 ms
116,096 KB
testcase_36 AC 587 ms
141,516 KB
testcase_37 AC 609 ms
149,744 KB
testcase_38 AC 210 ms
96,640 KB
testcase_39 AC 484 ms
133,616 KB
testcase_40 AC 587 ms
153,128 KB
testcase_41 AC 176 ms
88,576 KB
testcase_42 AC 512 ms
139,208 KB
testcase_43 AC 354 ms
129,348 KB
testcase_44 AC 376 ms
127,208 KB
testcase_45 AC 426 ms
151,504 KB
testcase_46 AC 132 ms
84,864 KB
testcase_47 AC 380 ms
136,428 KB
testcase_48 AC 371 ms
124,436 KB
testcase_49 AC 110 ms
76,672 KB
testcase_50 AC 182 ms
84,864 KB
testcase_51 AC 80 ms
73,216 KB
testcase_52 AC 78 ms
69,376 KB
testcase_53 AC 96 ms
76,288 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
e=[[] for i in range(n)]
for i in range(m):
  a,b=map(int,input().split())
  a-=1
  b-=1
  e[a]+=[b]
  e[b]+=[a]
v=[0]*n
d=[0]*n
q=[0]
v[0]=1
for s in q:
  for t in e[s]:
    if v[t]==0:
      v[t]=1
      d[t]=d[s]+1
      q+=[t]
ae=[0]*(n+1)
ao=[0]*(n+1)
for i in range(n):
  if v[i]==0:
    continue
  if d[i]%2:
    ao[(d[i]+1)//2]+=1
  else:
    ae[d[i]//2]+=1
for i in range(1,n+1):
  ae[i]+=ae[i-1]
  ao[i]+=ao[i-1]
ans=[]
for i in range(1,n+1):
  ans+=[ao[i],ae[i]]
print(*ans[:n],sep="\n")
0