結果

問題 No.1946 ロッカーの問題
ユーザー 👑 rin204rin204
提出日時 2022-05-20 21:39:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 974 ms / 3,000 ms
コード長 382 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 108,288 KB
最終ジャッジ日時 2024-09-20 07:35:33
合計ジャッジ時間 5,310 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 41 ms
58,496 KB
testcase_03 AC 828 ms
108,288 KB
testcase_04 AC 43 ms
59,008 KB
testcase_05 AC 68 ms
66,048 KB
testcase_06 AC 72 ms
65,920 KB
testcase_07 AC 67 ms
65,536 KB
testcase_08 AC 216 ms
83,200 KB
testcase_09 AC 688 ms
104,576 KB
testcase_10 AC 563 ms
100,736 KB
testcase_11 AC 67 ms
67,328 KB
testcase_12 AC 149 ms
71,424 KB
testcase_13 AC 37 ms
51,840 KB
testcase_14 AC 36 ms
51,456 KB
testcase_15 AC 40 ms
57,728 KB
testcase_16 AC 35 ms
51,968 KB
testcase_17 AC 392 ms
84,480 KB
testcase_18 AC 974 ms
98,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
open = [False] * (n + 1)
for a in A:
    open[a] = True
ans = 0

for i in range(n, 0, -1):
    if not open[i]:
        ans += 1
        continue
    for j in range(1, int(i ** 0.5 + 1)):
        if i % j == 0:
            open[j] ^= True
            if j * j != i:
                open[i // j] ^= True
print(ans)
0