結果

問題 No.2888 Mamehinata
ユーザー yupoohyupooh
提出日時 2024-09-13 23:22:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 109,060 KB
最終ジャッジ日時 2024-09-13 23:22:37
合計ジャッジ時間 14,277 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 42 ms
53,888 KB
testcase_04 AC 43 ms
53,888 KB
testcase_05 AC 43 ms
54,016 KB
testcase_06 AC 43 ms
53,888 KB
testcase_07 AC 43 ms
54,144 KB
testcase_08 AC 43 ms
53,632 KB
testcase_09 AC 42 ms
54,144 KB
testcase_10 AC 43 ms
53,760 KB
testcase_11 AC 43 ms
53,632 KB
testcase_12 AC 42 ms
53,376 KB
testcase_13 AC 121 ms
78,336 KB
testcase_14 AC 113 ms
85,120 KB
testcase_15 AC 265 ms
91,776 KB
testcase_16 AC 305 ms
97,920 KB
testcase_17 AC 108 ms
86,272 KB
testcase_18 AC 174 ms
82,944 KB
testcase_19 AC 369 ms
99,328 KB
testcase_20 AC 321 ms
94,080 KB
testcase_21 AC 307 ms
93,824 KB
testcase_22 AC 153 ms
90,240 KB
testcase_23 AC 180 ms
95,104 KB
testcase_24 AC 343 ms
101,120 KB
testcase_25 AC 241 ms
99,328 KB
testcase_26 AC 261 ms
98,560 KB
testcase_27 AC 166 ms
93,824 KB
testcase_28 AC 123 ms
79,616 KB
testcase_29 AC 191 ms
86,272 KB
testcase_30 AC 370 ms
101,120 KB
testcase_31 AC 313 ms
98,176 KB
testcase_32 AC 238 ms
91,520 KB
testcase_33 AC 292 ms
95,488 KB
testcase_34 AC 260 ms
92,544 KB
testcase_35 AC 241 ms
91,136 KB
testcase_36 AC 407 ms
102,836 KB
testcase_37 AC 412 ms
103,424 KB
testcase_38 AC 161 ms
83,968 KB
testcase_39 AC 346 ms
98,048 KB
testcase_40 AC 403 ms
102,272 KB
testcase_41 AC 126 ms
81,352 KB
testcase_42 AC 345 ms
98,880 KB
testcase_43 AC 265 ms
101,372 KB
testcase_44 AC 282 ms
103,704 KB
testcase_45 AC 311 ms
109,060 KB
testcase_46 AC 110 ms
80,244 KB
testcase_47 AC 288 ms
103,248 KB
testcase_48 AC 251 ms
95,180 KB
testcase_49 AC 75 ms
76,264 KB
testcase_50 AC 111 ms
82,244 KB
testcase_51 AC 56 ms
66,048 KB
testcase_52 AC 52 ms
62,976 KB
testcase_53 AC 70 ms
76,800 KB
testcase_54 AC 42 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

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)
if max(dist[1:])==-1:
	for i in range(n):
		print(0)
	exit()
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