結果

問題 No.1946 ロッカーの問題
ユーザー rlangevinrlangevin
提出日時 2022-12-30 22:59:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 957 ms / 3,000 ms
コード長 447 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 109,848 KB
最終ジャッジ日時 2024-05-04 11:01:09
合計ジャッジ時間 5,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,904 KB
testcase_01 AC 36 ms
52,192 KB
testcase_02 AC 41 ms
60,664 KB
testcase_03 AC 789 ms
109,848 KB
testcase_04 AC 39 ms
62,000 KB
testcase_05 AC 61 ms
72,324 KB
testcase_06 AC 65 ms
72,064 KB
testcase_07 AC 58 ms
70,272 KB
testcase_08 AC 209 ms
85,376 KB
testcase_09 AC 677 ms
105,932 KB
testcase_10 AC 565 ms
101,780 KB
testcase_11 AC 57 ms
71,788 KB
testcase_12 AC 143 ms
78,080 KB
testcase_13 AC 33 ms
52,396 KB
testcase_14 AC 33 ms
52,212 KB
testcase_15 AC 36 ms
58,484 KB
testcase_16 AC 32 ms
53,216 KB
testcase_17 AC 386 ms
86,644 KB
testcase_18 AC 957 ms
99,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def div(n):
    S = set()
    i = 1
    while i * i <= n:
        if n % i == 0:
            S.add(i)
            S.add(n // i)
        i += 1
    return S

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

D = [0] * (N + 1)
for a in A:
    D[a] += 1
    
ans = 0
E = [0] * (N + 1)
for i in range(N, 0, -1):
    if D[i] == E[i]:
        ans += 1
    else:
        for d in div(i):
            E[d] = 1 - E[d]
print(ans)        
0