結果

問題 No.1946 ロッカーの問題
ユーザー hashi_pyhashi_py
提出日時 2022-05-20 22:23:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,094 ms / 3,000 ms
コード長 763 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 125,700 KB
最終ジャッジ日時 2024-09-20 08:38:12
合計ジャッジ時間 7,373 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,884 KB
testcase_01 AC 36 ms
52,316 KB
testcase_02 AC 1,094 ms
77,440 KB
testcase_03 AC 354 ms
125,700 KB
testcase_04 AC 1,094 ms
77,448 KB
testcase_05 AC 724 ms
77,684 KB
testcase_06 AC 845 ms
77,616 KB
testcase_07 AC 609 ms
77,584 KB
testcase_08 AC 142 ms
91,836 KB
testcase_09 AC 336 ms
120,328 KB
testcase_10 AC 282 ms
113,296 KB
testcase_11 AC 67 ms
71,684 KB
testcase_12 AC 312 ms
79,768 KB
testcase_13 AC 36 ms
53,100 KB
testcase_14 AC 37 ms
53,008 KB
testcase_15 AC 96 ms
75,960 KB
testcase_16 AC 37 ms
52,240 KB
testcase_17 AC 67 ms
83,816 KB
testcase_18 AC 89 ms
105,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = set(map(int,input().split()))

def divisors(N):
    #Nの約数列挙
    divisors = []
    for i in range(1, N + 1):
        if i * i > N:
            break
        if N % i == 0:
            divisors.append(i)
            if N != i * i:
                divisors.append(N // i)
    return divisors

savotaged = [0]*(n+1)
ans = 0
for i in range(n-1,-1,-1):
    cnt = n//(i+1)
    if(cnt + savotaged[i+1])%2==0:
        if(i+1 in a):
            ans+=1
            for num in divisors(i+1):
                savotaged[num]^=1
        else:
            continue
    else:
        if(i+1 in a):
            continue
        else:
            ans+=1
            for num in divisors(i+1):
                savotaged[num]^=1

print(ans)
0