結果

問題 No.2888 Mamehinata
ユーザー るこーそーるこーそー
提出日時 2024-09-24 14:57:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 124,312 KB
最終ジャッジ日時 2024-09-24 14:57:50
合計ジャッジ時間 13,939 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,700 KB
testcase_01 AC 36 ms
54,288 KB
testcase_02 AC 37 ms
53,744 KB
testcase_03 AC 38 ms
55,188 KB
testcase_04 WA -
testcase_05 AC 38 ms
54,928 KB
testcase_06 AC 40 ms
55,644 KB
testcase_07 AC 38 ms
54,112 KB
testcase_08 AC 37 ms
54,332 KB
testcase_09 AC 37 ms
54,072 KB
testcase_10 AC 36 ms
54,604 KB
testcase_11 WA -
testcase_12 AC 36 ms
54,124 KB
testcase_13 AC 112 ms
79,048 KB
testcase_14 AC 110 ms
91,716 KB
testcase_15 WA -
testcase_16 AC 293 ms
111,428 KB
testcase_17 WA -
testcase_18 AC 148 ms
85,652 KB
testcase_19 AC 309 ms
110,272 KB
testcase_20 AC 284 ms
104,856 KB
testcase_21 AC 274 ms
103,392 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 292 ms
115,380 KB
testcase_25 AC 234 ms
113,812 KB
testcase_26 AC 267 ms
113,632 KB
testcase_27 AC 161 ms
108,708 KB
testcase_28 AC 100 ms
83,076 KB
testcase_29 AC 159 ms
92,120 KB
testcase_30 AC 347 ms
115,412 KB
testcase_31 AC 288 ms
107,596 KB
testcase_32 AC 224 ms
99,440 KB
testcase_33 AC 264 ms
106,556 KB
testcase_34 AC 238 ms
101,228 KB
testcase_35 AC 199 ms
98,348 KB
testcase_36 AC 388 ms
117,800 KB
testcase_37 AC 383 ms
119,156 KB
testcase_38 AC 143 ms
88,600 KB
testcase_39 AC 316 ms
109,976 KB
testcase_40 AC 387 ms
117,964 KB
testcase_41 AC 115 ms
84,228 KB
testcase_42 AC 318 ms
112,000 KB
testcase_43 AC 226 ms
111,572 KB
testcase_44 AC 287 ms
117,536 KB
testcase_45 AC 291 ms
124,312 KB
testcase_46 AC 94 ms
80,148 KB
testcase_47 AC 257 ms
117,100 KB
testcase_48 AC 239 ms
102,972 KB
testcase_49 AC 67 ms
76,468 KB
testcase_50 AC 97 ms
82,332 KB
testcase_51 AC 54 ms
68,480 KB
testcase_52 AC 48 ms
65,392 KB
testcase_53 AC 60 ms
76,828 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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)

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