結果

問題 No.1946 ロッカーの問題
ユーザー ああいいああいい
提出日時 2022-05-20 21:46:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 3,000 ms
コード長 430 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 142,720 KB
最終ジャッジ日時 2024-09-20 07:46:06
合計ジャッジ時間 5,260 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 418 ms
128,768 KB
testcase_03 AC 485 ms
142,720 KB
testcase_04 AC 416 ms
128,640 KB
testcase_05 AC 267 ms
105,984 KB
testcase_06 AC 319 ms
120,832 KB
testcase_07 AC 234 ms
104,704 KB
testcase_08 AC 144 ms
103,040 KB
testcase_09 AC 472 ms
136,832 KB
testcase_10 AC 386 ms
129,536 KB
testcase_11 AC 65 ms
68,096 KB
testcase_12 AC 154 ms
90,112 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 36 ms
51,840 KB
testcase_15 AC 56 ms
66,304 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 AC 200 ms
104,960 KB
testcase_18 AC 520 ms
136,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))
s = set(A)

dat = [0] * (N + 1)
div = [[] for _ in range(N + 1)]
for i in range(1,N + 1):
    for j in range(i,N + 1,i):
        div[j].append(i)
ans = 0
for i in range(N,0,-1):
    if dat[i] == 0 and i not in s:
        ans += 1
        continue
    if dat[i] == 1 and i in s:
        ans += 1
        continue
    for j in div[i]:
        dat[j] ^= 1
print(ans)
0