結果

問題 No.1946 ロッカーの問題
ユーザー platinumplatinum
提出日時 2022-04-13 09:13:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 906 ms / 3,000 ms
コード長 399 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,504 KB
最終ジャッジ日時 2024-06-02 08:41:46
合計ジャッジ時間 5,285 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 40 ms
60,544 KB
testcase_03 AC 761 ms
109,504 KB
testcase_04 AC 39 ms
60,580 KB
testcase_05 AC 57 ms
64,512 KB
testcase_06 AC 65 ms
64,768 KB
testcase_07 AC 59 ms
64,128 KB
testcase_08 AC 197 ms
78,080 KB
testcase_09 AC 669 ms
105,236 KB
testcase_10 AC 541 ms
99,584 KB
testcase_11 AC 51 ms
63,488 KB
testcase_12 AC 128 ms
68,224 KB
testcase_13 AC 33 ms
51,456 KB
testcase_14 AC 34 ms
51,840 KB
testcase_15 AC 39 ms
57,856 KB
testcase_16 AC 33 ms
51,712 KB
testcase_17 AC 371 ms
78,720 KB
testcase_18 AC 906 ms
96,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

B = [0] * (N + 1)
for l in A:
    B[l] = 1

ans = 0
L = [0] * (N + 1)
for i in range(N, 0, -1):
    if L[i] == B[i]:
        ans += 1
    else:
        j = 1
        while j * j <= i:
            if i % j == 0:
                L[j] ^= 1
                if j * j != i:
                    L[i//j] ^= 1
            j += 1

print(ans)
0