結果

問題 No.2888 Mamehinata
ユーザー ntudantuda
提出日時 2024-09-13 22:37:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 138,752 KB
最終ジャッジ日時 2024-09-13 22:37:56
合計ジャッジ時間 15,435 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 38 ms
52,388 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 176 ms
87,788 KB
testcase_14 AC 138 ms
86,540 KB
testcase_15 WA -
testcase_16 AC 385 ms
111,744 KB
testcase_17 WA -
testcase_18 AC 237 ms
95,244 KB
testcase_19 AC 415 ms
117,504 KB
testcase_20 AC 351 ms
110,592 KB
testcase_21 AC 352 ms
111,144 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 349 ms
111,232 KB
testcase_25 AC 295 ms
108,816 KB
testcase_26 AC 302 ms
107,700 KB
testcase_27 AC 170 ms
95,616 KB
testcase_28 AC 140 ms
83,320 KB
testcase_29 AC 220 ms
92,552 KB
testcase_30 AC 459 ms
115,456 KB
testcase_31 AC 360 ms
109,312 KB
testcase_32 AC 281 ms
100,096 KB
testcase_33 AC 376 ms
106,880 KB
testcase_34 AC 302 ms
102,400 KB
testcase_35 AC 273 ms
98,868 KB
testcase_36 AC 471 ms
119,040 KB
testcase_37 AC 479 ms
120,704 KB
testcase_38 AC 190 ms
89,456 KB
testcase_39 AC 447 ms
112,256 KB
testcase_40 AC 506 ms
119,680 KB
testcase_41 AC 154 ms
84,736 KB
testcase_42 AC 424 ms
113,280 KB
testcase_43 AC 338 ms
131,752 KB
testcase_44 AC 386 ms
138,752 KB
testcase_45 AC 435 ms
135,536 KB
testcase_46 AC 115 ms
81,536 KB
testcase_47 AC 376 ms
137,504 KB
testcase_48 AC 338 ms
127,232 KB
testcase_49 AC 114 ms
80,896 KB
testcase_50 AC 214 ms
95,360 KB
testcase_51 AC 81 ms
76,928 KB
testcase_52 AC 70 ms
71,424 KB
testcase_53 AC 96 ms
79,104 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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, 1]
nv = [True] * N
nv[0] = False
Q = [0]
for i in range(N):
    Q2 = []
    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