結果

問題 No.1946 ロッカーの問題
ユーザー Akijin_007Akijin_007
提出日時 2022-05-20 23:06:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,088 ms / 3,000 ms
コード長 515 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-09-20 09:30:02
合計ジャッジ時間 5,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 35 ms
51,884 KB
testcase_02 AC 39 ms
59,008 KB
testcase_03 AC 855 ms
108,160 KB
testcase_04 AC 40 ms
59,324 KB
testcase_05 AC 62 ms
64,000 KB
testcase_06 AC 64 ms
64,000 KB
testcase_07 AC 59 ms
63,616 KB
testcase_08 AC 224 ms
80,896 KB
testcase_09 AC 757 ms
104,320 KB
testcase_10 AC 620 ms
100,480 KB
testcase_11 AC 57 ms
64,768 KB
testcase_12 AC 144 ms
69,632 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 AC 36 ms
51,968 KB
testcase_15 AC 38 ms
57,984 KB
testcase_16 AC 35 ms
51,840 KB
testcase_17 AC 423 ms
82,560 KB
testcase_18 AC 1,088 ms
98,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

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

r = [0] * (N+1)
for i in range(M):
    r[A[i]] = 1

ans = 0
for i in range(N, 0, -1):
    if r[i] == 0:
        ans += 1
        continue
    for j in range(1, i):
        if j ** 2 > i:
            break
        elif i % j != 0:
            continue
        if j ** 2 == i:
            r[j] ^= 1
        else:
            r[j] ^= 1
            r[i//j] ^= 1

print(ans)
0