結果

問題 No.1946 ロッカーの問題
ユーザー tnodinotnodino
提出日時 2022-05-21 19:14:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 865 ms / 3,000 ms
コード長 514 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 110,080 KB
最終ジャッジ日時 2024-09-20 12:05:17
合計ジャッジ時間 5,005 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 41 ms
60,928 KB
testcase_03 AC 719 ms
110,080 KB
testcase_04 AC 43 ms
60,672 KB
testcase_05 AC 68 ms
70,016 KB
testcase_06 AC 70 ms
71,040 KB
testcase_07 AC 65 ms
69,376 KB
testcase_08 AC 206 ms
86,272 KB
testcase_09 AC 633 ms
105,600 KB
testcase_10 AC 527 ms
102,016 KB
testcase_11 AC 68 ms
70,912 KB
testcase_12 AC 146 ms
78,976 KB
testcase_13 AC 36 ms
51,712 KB
testcase_14 AC 35 ms
51,712 KB
testcase_15 AC 42 ms
58,880 KB
testcase_16 AC 36 ms
52,096 KB
testcase_17 AC 369 ms
86,400 KB
testcase_18 AC 865 ms
99,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
def Divisor(N):
    ret = []
    for i in range(1,int(sqrt(N))+1):
        if N % i == 0:
            ret.append(i)
            if N // i != i:
                ret.append(N//i)
    return ret

N,M = map(int,input().split())
A = list(map(int,input().split()))
Locker = [0] * (N+1)
for a in A:
    Locker[a] = 1
Flg = [0] * (N+1)
ans = 0
for i in range(N,0,-1):
    if Flg[i] == Locker[i]:
        ans += 1
    else:
        P = Divisor(i)
        for p in P:
            Flg[p] ^= 1
print(ans)
0