結果

問題 No.1946 ロッカーの問題
ユーザー abababab
提出日時 2022-05-20 22:37:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 989 ms / 3,000 ms
コード長 513 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 125,912 KB
最終ジャッジ日時 2024-09-20 08:54:46
合計ジャッジ時間 5,395 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 45 ms
62,592 KB
testcase_03 AC 810 ms
125,912 KB
testcase_04 AC 45 ms
62,720 KB
testcase_05 AC 72 ms
73,472 KB
testcase_06 AC 76 ms
74,368 KB
testcase_07 AC 70 ms
72,064 KB
testcase_08 AC 223 ms
90,752 KB
testcase_09 AC 700 ms
119,936 KB
testcase_10 AC 590 ms
113,408 KB
testcase_11 AC 69 ms
74,112 KB
testcase_12 AC 165 ms
79,232 KB
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 42 ms
58,368 KB
testcase_16 AC 37 ms
51,712 KB
testcase_17 AC 408 ms
91,136 KB
testcase_18 AC 989 ms
109,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def div_lis(x):
    div_l, div_r = [], []
    i = 1
    while i * i <= x:
        if x % i == 0:
            div_l.append(i)
            if i != x // i:
                div_r.append(x // i)
        i += 1
    div = div_l + div_r[::-1]
    return div


n, m = map(int, input().split())
A = set(map(int, input().split()))

open_ = [0] * (n + 1)
ans = 0
for x in reversed(range(1, n + 1)):
    if (x in A) != open_[x]:
        for div in div_lis(x):
            open_[div] ^= 1
    else:
        ans += 1

print(ans)
0