結果

問題 No.1946 ロッカーの問題
ユーザー chineristACchineristAC
提出日時 2022-05-20 21:37:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 3,000 ms
コード長 498 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-09-20 07:31:23
合計ジャッジ時間 2,448 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,552 KB
testcase_01 AC 46 ms
55,808 KB
testcase_02 AC 86 ms
67,584 KB
testcase_03 AC 140 ms
108,416 KB
testcase_04 AC 92 ms
67,968 KB
testcase_05 AC 81 ms
69,504 KB
testcase_06 AC 85 ms
69,888 KB
testcase_07 AC 79 ms
68,992 KB
testcase_08 AC 80 ms
83,328 KB
testcase_09 AC 128 ms
106,440 KB
testcase_10 AC 121 ms
102,912 KB
testcase_11 AC 60 ms
68,608 KB
testcase_12 AC 80 ms
72,960 KB
testcase_13 AC 45 ms
55,552 KB
testcase_14 AC 46 ms
55,680 KB
testcase_15 AC 55 ms
65,280 KB
testcase_16 AC 45 ms
55,296 KB
testcase_17 AC 81 ms
82,560 KB
testcase_18 AC 121 ms
101,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
import heapq
from itertools import permutations
from math import gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = mi()
A = li()

door = [0] * (N+1)
for a in A:
    door[a] = 1

erai = [0] * (N+1)
for i in range(1,N+1)[::-1]:
    check = 0
    for j in range(2*i,N+1,i):
        if erai[j]:
            check ^= 1
    erai[i] = door[i]^check

print(N-sum(erai))
0