結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 43 ms
60,288 KB
testcase_03 AC 789 ms
109,568 KB
testcase_04 AC 42 ms
60,544 KB
testcase_05 AC 67 ms
70,912 KB
testcase_06 AC 71 ms
72,064 KB
testcase_07 AC 65 ms
69,632 KB
testcase_08 AC 219 ms
85,248 KB
testcase_09 AC 687 ms
105,344 KB
testcase_10 AC 579 ms
101,504 KB
testcase_11 AC 68 ms
71,168 KB
testcase_12 AC 153 ms
78,080 KB
testcase_13 AC 36 ms
51,840 KB
testcase_14 AC 35 ms
51,840 KB
testcase_15 AC 38 ms
57,728 KB
testcase_16 AC 34 ms
51,968 KB
testcase_17 AC 407 ms
86,016 KB
testcase_18 AC 964 ms
99,328 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