結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 47 ms
53,760 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 WA -
testcase_05 AC 41 ms
53,888 KB
testcase_06 AC 40 ms
53,760 KB
testcase_07 AC 41 ms
53,376 KB
testcase_08 AC 40 ms
53,888 KB
testcase_09 AC 41 ms
53,632 KB
testcase_10 AC 41 ms
53,632 KB
testcase_11 WA -
testcase_12 AC 41 ms
54,016 KB
testcase_13 AC 117 ms
78,336 KB
testcase_14 AC 106 ms
83,968 KB
testcase_15 WA -
testcase_16 AC 333 ms
96,896 KB
testcase_17 WA -
testcase_18 AC 164 ms
82,176 KB
testcase_19 AC 352 ms
97,920 KB
testcase_20 AC 318 ms
93,440 KB
testcase_21 AC 302 ms
92,928 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 292 ms
99,840 KB
testcase_25 AC 239 ms
97,792 KB
testcase_26 AC 244 ms
97,280 KB
testcase_27 AC 144 ms
92,928 KB
testcase_28 AC 106 ms
79,760 KB
testcase_29 AC 170 ms
85,816 KB
testcase_30 AC 365 ms
99,840 KB
testcase_31 AC 288 ms
97,152 KB
testcase_32 AC 239 ms
90,920 KB
testcase_33 AC 276 ms
95,232 KB
testcase_34 AC 258 ms
91,392 KB
testcase_35 AC 213 ms
90,120 KB
testcase_36 AC 380 ms
101,504 KB
testcase_37 AC 403 ms
101,760 KB
testcase_38 AC 168 ms
83,968 KB
testcase_39 AC 320 ms
97,004 KB
testcase_40 AC 393 ms
101,248 KB
testcase_41 AC 120 ms
80,768 KB
testcase_42 AC 366 ms
97,756 KB
testcase_43 AC 246 ms
99,832 KB
testcase_44 AC 275 ms
102,684 KB
testcase_45 AC 301 ms
107,772 KB
testcase_46 AC 117 ms
79,872 KB
testcase_47 AC 250 ms
101,468 KB
testcase_48 AC 231 ms
94,152 KB
testcase_49 AC 68 ms
76,544 KB
testcase_50 AC 105 ms
81,664 KB
testcase_51 AC 53 ms
65,920 KB
testcase_52 AC 50 ms
63,724 KB
testcase_53 AC 64 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