結果

問題 No.1946 ロッカーの問題
ユーザー pitPpitP
提出日時 2022-05-20 22:09:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 964 ms / 3,000 ms
コード長 358 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,292 KB
最終ジャッジ日時 2024-09-20 08:19:40
合計ジャッジ時間 9,575 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 875 ms
13,824 KB
testcase_03 AC 964 ms
30,292 KB
testcase_04 AC 861 ms
13,696 KB
testcase_05 AC 648 ms
12,800 KB
testcase_06 AC 716 ms
13,184 KB
testcase_07 AC 535 ms
12,544 KB
testcase_08 AC 318 ms
17,100 KB
testcase_09 AC 843 ms
27,332 KB
testcase_10 AC 705 ms
26,164 KB
testcase_11 AC 53 ms
11,264 KB
testcase_12 AC 371 ms
13,824 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 95 ms
10,880 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 450 ms
17,396 KB
testcase_18 AC 930 ms
25,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = list(map(int,input().split()))
g = [0] * (n+1)
for i in range(m):
    g[a[i]] = 1

boo = [1] * (n+1) #サボったら0

ans = 0
for i in range(n,0,-1):
    coef = 1
    cnt = 0
    while i * coef <= n:
        cnt += boo[i * coef]
        coef += 1
    
    if cnt%2 != g[i]:
        boo[i] = 0
        ans += 1

print(ans)
0