結果

問題 No.2888 Mamehinata
ユーザー timitimi
提出日時 2024-09-13 21:31:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 507 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,972 KB
最終ジャッジ日時 2024-09-13 21:31:49
合計ジャッジ時間 15,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 46 ms
53,376 KB
testcase_03 AC 52 ms
53,888 KB
testcase_04 WA -
testcase_05 AC 47 ms
54,400 KB
testcase_06 AC 46 ms
54,144 KB
testcase_07 AC 46 ms
53,632 KB
testcase_08 AC 46 ms
54,400 KB
testcase_09 AC 46 ms
53,760 KB
testcase_10 AC 46 ms
53,632 KB
testcase_11 WA -
testcase_12 AC 47 ms
54,272 KB
testcase_13 AC 171 ms
79,488 KB
testcase_14 AC 144 ms
84,608 KB
testcase_15 WA -
testcase_16 AC 390 ms
97,920 KB
testcase_17 WA -
testcase_18 AC 236 ms
84,224 KB
testcase_19 AC 422 ms
98,304 KB
testcase_20 AC 379 ms
94,592 KB
testcase_21 AC 405 ms
93,056 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 364 ms
98,944 KB
testcase_25 AC 287 ms
98,176 KB
testcase_26 AC 310 ms
97,792 KB
testcase_27 AC 187 ms
93,056 KB
testcase_28 AC 143 ms
80,640 KB
testcase_29 AC 229 ms
86,016 KB
testcase_30 AC 424 ms
100,480 KB
testcase_31 AC 363 ms
96,640 KB
testcase_32 AC 285 ms
90,368 KB
testcase_33 AC 348 ms
94,464 KB
testcase_34 AC 295 ms
91,776 KB
testcase_35 AC 253 ms
89,984 KB
testcase_36 AC 478 ms
101,376 KB
testcase_37 AC 465 ms
102,400 KB
testcase_38 AC 188 ms
84,224 KB
testcase_39 AC 416 ms
97,024 KB
testcase_40 AC 454 ms
101,632 KB
testcase_41 AC 152 ms
81,280 KB
testcase_42 AC 418 ms
98,176 KB
testcase_43 AC 301 ms
104,508 KB
testcase_44 AC 320 ms
103,716 KB
testcase_45 AC 359 ms
106,972 KB
testcase_46 AC 134 ms
80,896 KB
testcase_47 AC 328 ms
103,164 KB
testcase_48 AC 314 ms
97,136 KB
testcase_49 AC 113 ms
77,056 KB
testcase_50 AC 181 ms
85,120 KB
testcase_51 AC 83 ms
73,472 KB
testcase_52 AC 80 ms
70,528 KB
testcase_53 AC 96 ms
76,288 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
#A=list(map(int, input().split()))
D=[[] for i in range(N)]

for i in range(M):
  x,y=map(int,input().split())
  x-=1;y-=1
  D[x].append(y);D[y].append(x)
  
from collections import deque
d=deque()
V=[-1]*N 
V[0]=0
d.append(0)
E=[0]*(N+1)
E[0]+=1
while d:
  now=d.popleft()
  for nex in D[now]:
    if V[nex]==-1:
      V[nex]=V[now]+1
      d.append(nex)
      E[V[nex]]+=1

p,q=1,0 
for i in range(1,N+1):
  if i%2==1:
    q+=E[i]
    print(q)
  else:
    p+=E[i]
    print(p)
0