結果

問題 No.2888 Mamehinata
ユーザー noriocnorioc
提出日時 2024-11-24 06:52:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 411 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 298,760 KB
最終ジャッジ日時 2024-11-24 06:54:11
合計ジャッジ時間 95,858 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,624 KB
testcase_01 AC 39 ms
136,320 KB
testcase_02 AC 40 ms
58,624 KB
testcase_03 AC 39 ms
236,412 KB
testcase_04 AC 40 ms
59,520 KB
testcase_05 AC 47 ms
162,688 KB
testcase_06 AC 46 ms
65,792 KB
testcase_07 AC 40 ms
243,644 KB
testcase_08 AC 41 ms
59,392 KB
testcase_09 AC 40 ms
239,696 KB
testcase_10 AC 39 ms
58,752 KB
testcase_11 AC 40 ms
226,732 KB
testcase_12 AC 44 ms
64,896 KB
testcase_13 TLE -
testcase_14 AC 162 ms
91,520 KB
testcase_15 AC 280 ms
229,928 KB
testcase_16 TLE -
testcase_17 AC 126 ms
88,704 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 157 ms
94,856 KB
testcase_23 AC 245 ms
223,988 KB
testcase_24 TLE -
testcase_25 AC 268 ms
214,972 KB
testcase_26 TLE -
testcase_27 AC 192 ms
221,188 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 251 ms
77,696 KB
testcase_50 AC 1,027 ms
85,504 KB
testcase_51 AC 100 ms
76,544 KB
testcase_52 AC 87 ms
72,960 KB
testcase_53 AC 152 ms
76,672 KB
testcase_54 AC 46 ms
270,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, M = map(int, input().split())
adj = defaultdict(list)
for _ in range(M):
    u, v = map(lambda x: int(x)-1, input().split())
    adj[u].append(v)
    adj[v].append(u)

blacks = {0}
for _ in range(N):
    nodes = set()
    for v in blacks:
        for to in adj[v]:
            if to in blacks: continue
            nodes.add(to)

    print(len(nodes))
    blacks = nodes
0