結果

問題 No.2888 Mamehinata
ユーザー yupoohyupooh
提出日時 2024-09-13 21:31:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 573 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 108,076 KB
最終ジャッジ日時 2024-09-13 21:32:27
合計ジャッジ時間 13,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 45 ms
53,248 KB
testcase_02 AC 45 ms
53,632 KB
testcase_03 AC 45 ms
53,248 KB
testcase_04 WA -
testcase_05 AC 48 ms
53,888 KB
testcase_06 AC 46 ms
53,632 KB
testcase_07 AC 47 ms
53,632 KB
testcase_08 AC 47 ms
53,888 KB
testcase_09 AC 46 ms
53,632 KB
testcase_10 AC 46 ms
53,248 KB
testcase_11 WA -
testcase_12 AC 46 ms
54,016 KB
testcase_13 AC 132 ms
78,336 KB
testcase_14 AC 124 ms
84,096 KB
testcase_15 WA -
testcase_16 AC 330 ms
96,768 KB
testcase_17 WA -
testcase_18 AC 168 ms
82,304 KB
testcase_19 AC 351 ms
97,536 KB
testcase_20 AC 301 ms
93,440 KB
testcase_21 AC 316 ms
92,544 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 305 ms
99,072 KB
testcase_25 AC 244 ms
97,792 KB
testcase_26 AC 268 ms
97,664 KB
testcase_27 AC 160 ms
92,288 KB
testcase_28 AC 123 ms
79,616 KB
testcase_29 AC 183 ms
85,632 KB
testcase_30 AC 373 ms
99,840 KB
testcase_31 AC 315 ms
97,024 KB
testcase_32 AC 240 ms
90,368 KB
testcase_33 AC 303 ms
94,592 KB
testcase_34 AC 268 ms
91,008 KB
testcase_35 AC 228 ms
89,856 KB
testcase_36 AC 406 ms
100,864 KB
testcase_37 AC 410 ms
101,760 KB
testcase_38 AC 169 ms
83,712 KB
testcase_39 AC 344 ms
96,768 KB
testcase_40 AC 437 ms
101,120 KB
testcase_41 AC 137 ms
80,640 KB
testcase_42 AC 349 ms
97,536 KB
testcase_43 AC 262 ms
99,456 KB
testcase_44 AC 280 ms
102,424 KB
testcase_45 AC 300 ms
108,076 KB
testcase_46 AC 115 ms
79,488 KB
testcase_47 AC 268 ms
101,716 KB
testcase_48 AC 257 ms
94,408 KB
testcase_49 AC 84 ms
76,160 KB
testcase_50 AC 123 ms
81,792 KB
testcase_51 AC 62 ms
65,664 KB
testcase_52 AC 59 ms
63,232 KB
testcase_53 AC 78 ms
76,800 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
n,m=map(int,input().split())
adj=[[] for _ in range(n)]
for _ in range(m):
  u,v=map(int,input().split())
  adj[u-1].append(v-1)
  adj[v-1].append(u-1)
from collections import deque
dist = [-1]*n
que = deque([0])
dist[0] = 0
while que:
  v = que.popleft()
  e = dist[v]
  for w in adj[v]:
    if dist[w] > -1:
      continue
    dist[w] = e + 1
    que.append(w)
cnt=[0]*(n+10)
for i in range(n):
  cnt[dist[i]]+=1
even=1
odd=0
for t in range(1,n+1):
  if t%2==0:
    even+=cnt[t]
    print(even)
  else:
    odd+=cnt[t]
    print(odd)
0