結果

問題 No.2888 Mamehinata
ユーザー ニックネームニックネーム
提出日時 2024-09-13 21:36:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 63,812 KB
最終ジャッジ日時 2024-09-13 21:36:42
合計ジャッジ時間 35,656 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 401 ms
18,944 KB
testcase_14 AC 230 ms
24,244 KB
testcase_15 WA -
testcase_16 AC 1,078 ms
51,640 KB
testcase_17 WA -
testcase_18 AC 663 ms
25,716 KB
testcase_19 AC 1,243 ms
51,832 KB
testcase_20 AC 1,057 ms
45,052 KB
testcase_21 AC 1,048 ms
44,136 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,041 ms
55,504 KB
testcase_25 AC 788 ms
46,412 KB
testcase_26 AC 826 ms
51,928 KB
testcase_27 AC 430 ms
39,276 KB
testcase_28 AC 201 ms
17,852 KB
testcase_29 AC 497 ms
30,032 KB
testcase_30 AC 1,209 ms
57,144 KB
testcase_31 AC 1,054 ms
49,836 KB
testcase_32 AC 719 ms
38,924 KB
testcase_33 AC 949 ms
46,760 KB
testcase_34 AC 788 ms
41,172 KB
testcase_35 AC 671 ms
37,612 KB
testcase_36 AC 1,382 ms
62,972 KB
testcase_37 AC 1,395 ms
63,408 KB
testcase_38 AC 384 ms
26,196 KB
testcase_39 AC 1,123 ms
54,192 KB
testcase_40 AC 1,363 ms
63,812 KB
testcase_41 AC 244 ms
20,388 KB
testcase_42 AC 1,149 ms
55,872 KB
testcase_43 AC 967 ms
46,380 KB
testcase_44 AC 1,089 ms
50,564 KB
testcase_45 AC 1,267 ms
55,940 KB
testcase_46 AC 171 ms
16,972 KB
testcase_47 AC 1,048 ms
49,748 KB
testcase_48 AC 1,010 ms
35,748 KB
testcase_49 AC 202 ms
12,800 KB
testcase_50 AC 656 ms
20,736 KB
testcase_51 AC 53 ms
11,008 KB
testcase_52 AC 37 ms
10,752 KB
testcase_53 AC 112 ms
11,520 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
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)
d = [0]+[n]*(n-1); c = [1]+[0]*n; dq = deque([0])
while dq:
    p = dq.popleft()
    for v in adj[p]:
        if d[v]==n: d[v] = d[p]+1; c[d[v]] += 1; dq.append(v)
for i in range(n-1): c[i+2] += c[i]
print(*c[1:],sep="\n")
0