結果

問題 No.2888 Mamehinata
ユーザー ntudantuda
提出日時 2024-09-13 23:32:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 495 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 139,008 KB
最終ジャッジ日時 2024-09-13 23:33:15
合計ジャッジ時間 15,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 40 ms
52,864 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 44 ms
52,352 KB
testcase_09 AC 43 ms
51,968 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 40 ms
51,712 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 176 ms
88,172 KB
testcase_14 AC 134 ms
86,144 KB
testcase_15 AC 302 ms
108,032 KB
testcase_16 AC 381 ms
111,744 KB
testcase_17 AC 151 ms
86,784 KB
testcase_18 AC 242 ms
95,180 KB
testcase_19 AC 421 ms
116,864 KB
testcase_20 AC 352 ms
110,100 KB
testcase_21 AC 357 ms
110,464 KB
testcase_22 AC 181 ms
94,932 KB
testcase_23 AC 226 ms
101,632 KB
testcase_24 AC 362 ms
111,104 KB
testcase_25 AC 278 ms
108,748 KB
testcase_26 AC 306 ms
107,528 KB
testcase_27 AC 174 ms
94,976 KB
testcase_28 AC 140 ms
83,328 KB
testcase_29 AC 214 ms
92,672 KB
testcase_30 AC 441 ms
115,328 KB
testcase_31 AC 392 ms
109,952 KB
testcase_32 AC 280 ms
99,968 KB
testcase_33 AC 345 ms
107,296 KB
testcase_34 AC 302 ms
102,016 KB
testcase_35 AC 299 ms
98,304 KB
testcase_36 AC 456 ms
119,424 KB
testcase_37 AC 495 ms
120,832 KB
testcase_38 AC 218 ms
89,600 KB
testcase_39 AC 412 ms
111,872 KB
testcase_40 AC 492 ms
119,680 KB
testcase_41 AC 172 ms
84,224 KB
testcase_42 AC 423 ms
113,560 KB
testcase_43 AC 335 ms
131,964 KB
testcase_44 AC 364 ms
139,008 KB
testcase_45 AC 454 ms
135,260 KB
testcase_46 AC 117 ms
81,152 KB
testcase_47 AC 362 ms
135,936 KB
testcase_48 AC 365 ms
127,092 KB
testcase_49 AC 115 ms
80,640 KB
testcase_50 AC 221 ms
95,104 KB
testcase_51 AC 79 ms
76,672 KB
testcase_52 AC 71 ms
70,912 KB
testcase_53 AC 96 ms
78,848 KB
testcase_54 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

X = [0, 0]
nv = [True] * N
Q = [0]
Q2 = []

for i in range(N):
    while Q:
        x = Q.pop()
        for y in E[x]:
            if nv[y]:
                nv[y] = False
                Q2.append(y)
                X[i % 2] += 1
    Q, Q2 = Q2, Q
    print(X[i % 2])
0