結果

問題 No.1946 ロッカーの問題
ユーザー tassei903tassei903
提出日時 2022-05-21 09:05:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 3,000 ms
コード長 563 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,288 KB
最終ジャッジ日時 2024-09-20 11:13:58
合計ジャッジ時間 2,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 75 ms
62,720 KB
testcase_03 AC 128 ms
108,288 KB
testcase_04 AC 78 ms
63,104 KB
testcase_05 AC 77 ms
66,304 KB
testcase_06 AC 78 ms
66,816 KB
testcase_07 AC 73 ms
65,920 KB
testcase_08 AC 76 ms
80,256 KB
testcase_09 AC 119 ms
104,580 KB
testcase_10 AC 118 ms
100,800 KB
testcase_11 AC 56 ms
65,664 KB
testcase_12 AC 70 ms
70,272 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 40 ms
51,584 KB
testcase_15 AC 53 ms
62,080 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 75 ms
77,824 KB
testcase_18 AC 106 ms
94,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n,m = na()
a = na()
f = [0]*(1+n)
for i in range(m):
    f[a[i]] = 1
c = 0
for i in range(n,0,-1):
    for j in range(i*2, n+1, i):
        f[i] ^= f[j]
    if f[i] ^ 1:
        c += 1
    #print(f)

print(c)
0