結果

問題 No.2888 Mamehinata
ユーザー ニックネームニックネーム
提出日時 2024-09-13 21:38:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,473 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 63,704 KB
最終ジャッジ日時 2024-09-13 21:39:27
合計ジャッジ時間 35,472 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 418 ms
18,816 KB
testcase_14 AC 235 ms
23,984 KB
testcase_15 AC 889 ms
38,368 KB
testcase_16 AC 1,124 ms
51,784 KB
testcase_17 AC 241 ms
29,544 KB
testcase_18 AC 643 ms
25,596 KB
testcase_19 AC 1,259 ms
51,852 KB
testcase_20 AC 1,043 ms
45,188 KB
testcase_21 AC 1,050 ms
44,148 KB
testcase_22 AC 409 ms
34,968 KB
testcase_23 AC 602 ms
42,892 KB
testcase_24 AC 1,041 ms
55,520 KB
testcase_25 AC 796 ms
46,560 KB
testcase_26 AC 820 ms
51,816 KB
testcase_27 AC 436 ms
39,416 KB
testcase_28 AC 204 ms
17,744 KB
testcase_29 AC 497 ms
29,784 KB
testcase_30 AC 1,291 ms
57,412 KB
testcase_31 AC 1,040 ms
50,108 KB
testcase_32 AC 729 ms
38,936 KB
testcase_33 AC 953 ms
46,776 KB
testcase_34 AC 845 ms
41,068 KB
testcase_35 AC 716 ms
37,760 KB
testcase_36 AC 1,362 ms
62,732 KB
testcase_37 AC 1,473 ms
63,428 KB
testcase_38 AC 394 ms
26,340 KB
testcase_39 AC 1,136 ms
54,188 KB
testcase_40 AC 1,369 ms
63,704 KB
testcase_41 AC 246 ms
20,276 KB
testcase_42 AC 1,193 ms
56,020 KB
testcase_43 AC 944 ms
46,264 KB
testcase_44 AC 1,049 ms
50,584 KB
testcase_45 AC 1,207 ms
55,936 KB
testcase_46 AC 168 ms
16,860 KB
testcase_47 AC 1,037 ms
49,512 KB
testcase_48 AC 994 ms
34,960 KB
testcase_49 AC 202 ms
12,800 KB
testcase_50 AC 659 ms
20,480 KB
testcase_51 AC 53 ms
11,008 KB
testcase_52 AC 37 ms
10,752 KB
testcase_53 AC 111 ms
11,520 KB
testcase_54 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

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:] if c[1] else [0]*n,sep="\n")
0