結果

問題 No.1946 ロッカーの問題
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-05-20 22:02:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,111 ms / 3,000 ms
コード長 420 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 125,916 KB
最終ジャッジ日時 2024-09-20 08:10:30
合計ジャッジ時間 5,690 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 44 ms
59,264 KB
testcase_03 AC 876 ms
125,916 KB
testcase_04 AC 44 ms
59,008 KB
testcase_05 AC 71 ms
70,656 KB
testcase_06 AC 75 ms
71,936 KB
testcase_07 AC 71 ms
70,144 KB
testcase_08 AC 239 ms
91,264 KB
testcase_09 AC 754 ms
120,448 KB
testcase_10 AC 645 ms
113,024 KB
testcase_11 AC 73 ms
73,472 KB
testcase_12 AC 169 ms
79,488 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 36 ms
52,096 KB
testcase_15 AC 39 ms
58,112 KB
testcase_16 AC 35 ms
51,968 KB
testcase_17 AC 440 ms
91,728 KB
testcase_18 AC 1,111 ms
109,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = set(map(int,input().split()))
def cul(k):
    cnt = 1
    res = set()
    while cnt ** 2 <= k:
        if k%cnt == 0:
            res.add(cnt)
            res.add(k//cnt)
        cnt += 1
    return res
l = [0] * (n+1)
ans = 0
for i in range(n,0,-1):
    val = (1 if i in a else 0)
    if l[i] ^ val:
        for e in cul(i):
            l[e] ^= 1
    else:
        ans += 1
print(ans)
0