結果

問題 No.1946 ロッカーの問題
ユーザー H20H20
提出日時 2022-04-10 18:54:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,550 ms / 3,000 ms
コード長 856 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 133,972 KB
最終ジャッジ日時 2024-06-01 06:29:01
合計ジャッジ時間 14,397 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 1,507 ms
130,196 KB
testcase_03 AC 1,550 ms
133,972 KB
testcase_04 AC 1,504 ms
130,072 KB
testcase_05 AC 995 ms
113,684 KB
testcase_06 AC 1,156 ms
119,208 KB
testcase_07 AC 834 ms
108,292 KB
testcase_08 AC 377 ms
96,464 KB
testcase_09 AC 1,350 ms
126,300 KB
testcase_10 AC 1,089 ms
120,660 KB
testcase_11 AC 81 ms
77,912 KB
testcase_12 AC 494 ms
94,952 KB
testcase_13 AC 38 ms
52,216 KB
testcase_14 AC 38 ms
52,264 KB
testcase_15 AC 115 ms
78,104 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 603 ms
99,508 KB
testcase_18 AC 1,543 ms
128,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

N,M = map(int, input().split())
A = list(map(int, input().split()))
if not (1<=N<=2*10**5 and 0<=M<=N and len(A)==M and A==sorted(A) and M == len(set(A))):
    exit()
for a in A:
    if 1<=a<=N:
        continue
    exit()

DIV = [[]]
ALL = [0]*(N+1)
DOOR= [0]*(N+1)
for i in range(1,N+1):
    DIV.append(make_divisors(i))
    for div in DIV[i]:
        ALL[div] = (ALL[div]+1)%2
for a in A:
    DOOR[a]=1

cnt = 0
for i in reversed(range(N+1)):
    if ALL[i]!=DOOR[i]:
        cnt+=1
        for div in DIV[i]:
            DOOR[div] = (DOOR[div]+1)%2
print(cnt)
0