結果

問題 No.1946 ロッカーの問題
ユーザー ikomaikoma
提出日時 2022-05-20 22:38:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 3,000 ms
コード長 298 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 126,720 KB
最終ジャッジ日時 2024-09-20 08:56:55
合計ジャッジ時間 2,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 112 ms
91,264 KB
testcase_03 AC 134 ms
126,720 KB
testcase_04 AC 113 ms
91,328 KB
testcase_05 AC 100 ms
83,968 KB
testcase_06 AC 110 ms
86,400 KB
testcase_07 AC 93 ms
81,792 KB
testcase_08 AC 79 ms
85,760 KB
testcase_09 AC 141 ms
118,400 KB
testcase_10 AC 128 ms
115,536 KB
testcase_11 AC 50 ms
63,872 KB
testcase_12 AC 82 ms
77,824 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 AC 34 ms
51,840 KB
testcase_15 AC 45 ms
62,848 KB
testcase_16 AC 34 ms
51,960 KB
testcase_17 AC 68 ms
82,304 KB
testcase_18 AC 94 ms
102,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


N,M=map(int,input().split())
A=set(map(int,input().split()))
ans=0
sabo = set()
for i in range(N,0,-1):
    l=0
    j=i
    while j<=N:
        if j not in sabo:
            l^=1
        j+=i
    if l ^ (i in A):
        ans+=1
        sabo.add(i)
print(ans)
0