結果

問題 No.1946 ロッカーの問題
ユーザー KazunKazun
提出日時 2022-05-20 21:35:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 958 ms / 3,000 ms
コード長 406 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 107,980 KB
最終ジャッジ日時 2024-09-20 07:27:56
合計ジャッジ時間 5,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 43 ms
59,008 KB
testcase_03 AC 785 ms
107,980 KB
testcase_04 AC 43 ms
59,264 KB
testcase_05 AC 66 ms
68,224 KB
testcase_06 AC 67 ms
68,224 KB
testcase_07 AC 63 ms
67,840 KB
testcase_08 AC 212 ms
85,248 KB
testcase_09 AC 691 ms
103,936 KB
testcase_10 AC 550 ms
100,096 KB
testcase_11 AC 63 ms
68,864 KB
testcase_12 AC 153 ms
77,632 KB
testcase_13 AC 37 ms
52,352 KB
testcase_14 AC 37 ms
51,956 KB
testcase_15 AC 40 ms
57,472 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 396 ms
85,504 KB
testcase_18 AC 958 ms
97,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(i):
    X=[]
    j=1
    while j*j<=i:
        if i%j==0:
            X.append(j)
            if j*j!=i:
                X.append(i//j)
        j+=1
    return X

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

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

X=0
for i in range(N,0,-1):
    if R[i]==1:
        for j in divisors(i):
            R[j]=1-R[j]
    else:
        X+=1

print(X)
0