結果

問題 No.2888 Mamehinata
ユーザー るこーそーるこーそー
提出日時 2024-09-24 14:58:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 124,292 KB
最終ジャッジ日時 2024-09-24 14:58:58
合計ジャッジ時間 12,150 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,220 KB
testcase_01 AC 37 ms
54,108 KB
testcase_02 AC 39 ms
55,548 KB
testcase_03 AC 41 ms
55,028 KB
testcase_04 AC 40 ms
55,612 KB
testcase_05 AC 39 ms
54,640 KB
testcase_06 AC 39 ms
55,772 KB
testcase_07 AC 40 ms
54,788 KB
testcase_08 AC 36 ms
54,140 KB
testcase_09 AC 38 ms
54,004 KB
testcase_10 AC 37 ms
55,676 KB
testcase_11 AC 37 ms
54,988 KB
testcase_12 AC 38 ms
55,964 KB
testcase_13 AC 108 ms
79,012 KB
testcase_14 AC 106 ms
91,356 KB
testcase_15 AC 180 ms
93,200 KB
testcase_16 AC 288 ms
111,372 KB
testcase_17 AC 105 ms
88,920 KB
testcase_18 AC 148 ms
85,856 KB
testcase_19 AC 322 ms
110,424 KB
testcase_20 AC 293 ms
105,192 KB
testcase_21 AC 303 ms
103,552 KB
testcase_22 AC 126 ms
93,012 KB
testcase_23 AC 158 ms
98,780 KB
testcase_24 AC 286 ms
115,620 KB
testcase_25 AC 216 ms
113,832 KB
testcase_26 AC 255 ms
113,452 KB
testcase_27 AC 150 ms
108,764 KB
testcase_28 AC 102 ms
82,704 KB
testcase_29 AC 150 ms
91,872 KB
testcase_30 AC 350 ms
115,040 KB
testcase_31 AC 293 ms
107,936 KB
testcase_32 AC 221 ms
99,240 KB
testcase_33 AC 263 ms
106,704 KB
testcase_34 AC 216 ms
101,080 KB
testcase_35 AC 195 ms
98,768 KB
testcase_36 AC 384 ms
118,168 KB
testcase_37 AC 403 ms
119,260 KB
testcase_38 AC 150 ms
89,144 KB
testcase_39 AC 312 ms
109,624 KB
testcase_40 AC 397 ms
117,508 KB
testcase_41 AC 115 ms
84,148 KB
testcase_42 AC 323 ms
112,228 KB
testcase_43 AC 228 ms
111,304 KB
testcase_44 AC 283 ms
117,520 KB
testcase_45 AC 294 ms
124,292 KB
testcase_46 AC 95 ms
80,168 KB
testcase_47 AC 258 ms
116,948 KB
testcase_48 AC 241 ms
103,232 KB
testcase_49 AC 72 ms
76,796 KB
testcase_50 AC 96 ms
82,332 KB
testcase_51 AC 48 ms
67,708 KB
testcase_52 AC 48 ms
66,880 KB
testcase_53 AC 61 ms
76,536 KB
testcase_54 AC 38 ms
54,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
from collections import deque

n,m=map(int,input().split())
graph=[[] for _ in range(n)]
for _ in range(m):
    u,v=map(lambda x:int(x)-1,input().split())
    graph[u].append(v)
    graph[v].append(u)

if len(graph[0])==0:
    print(*[0]*n,sep="\n")
    exit()
    
que=deque([0])
dist=[-1]*n
dist[0]=0
time=[[0,0] for _ in range(n)]
while que:
    v=que.popleft()
    time[dist[v]][dist[v]%2]+=1
    for nv in graph[v]:
        if dist[nv]==-1:
            dist[nv]=dist[v]+1
            que.append(nv)

odd,even=0,1
for i in range(1,n+1):
    if i<n:odd+=time[i][1]
    if i<n:even+=time[i][0]
    
    print(odd if i%2 else even)
0