結果

問題 No.1946 ロッカーの問題
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-20 21:54:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 609 ms / 3,000 ms
コード長 333 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,520 KB
最終ジャッジ日時 2024-09-20 07:59:30
合計ジャッジ時間 6,261 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 543 ms
12,288 KB
testcase_03 AC 609 ms
34,520 KB
testcase_04 AC 531 ms
12,160 KB
testcase_05 AC 414 ms
12,160 KB
testcase_06 AC 454 ms
12,160 KB
testcase_07 AC 359 ms
11,904 KB
testcase_08 AC 201 ms
18,292 KB
testcase_09 AC 537 ms
32,712 KB
testcase_10 AC 453 ms
26,020 KB
testcase_11 AC 46 ms
11,264 KB
testcase_12 AC 260 ms
15,412 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 71 ms
10,752 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 281 ms
18,084 KB
testcase_18 AC 600 ms
25,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
S = set(A)

sabo = [0] * (N + 1)
for i in reversed(range(1, N+1)):
    c = (N // i) % 2
    for j in range(i, N+1, i):
        c ^= sabo[j]
    if i in S and c == 1:
        continue
    if not i in S and c == 0:
        continue
    sabo[i] = 1

print(sum(sabo))
0