結果

問題 No.1946 ロッカーの問題
ユーザー AkariAkari
提出日時 2022-05-20 22:54:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,099 ms / 3,000 ms
コード長 767 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 123,952 KB
最終ジャッジ日時 2024-09-20 09:16:21
合計ジャッジ時間 10,689 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,624 KB
testcase_01 AC 37 ms
52,960 KB
testcase_02 AC 1,038 ms
123,548 KB
testcase_03 AC 1,099 ms
123,952 KB
testcase_04 AC 1,025 ms
123,424 KB
testcase_05 AC 710 ms
109,640 KB
testcase_06 AC 820 ms
112,800 KB
testcase_07 AC 599 ms
104,196 KB
testcase_08 AC 277 ms
89,124 KB
testcase_09 AC 941 ms
118,076 KB
testcase_10 AC 769 ms
111,448 KB
testcase_11 AC 64 ms
73,316 KB
testcase_12 AC 357 ms
94,024 KB
testcase_13 AC 36 ms
53,072 KB
testcase_14 AC 36 ms
52,348 KB
testcase_15 AC 91 ms
78,660 KB
testcase_16 AC 36 ms
52,736 KB
testcase_17 AC 428 ms
95,308 KB
testcase_18 AC 1,084 ms
122,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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


def main():
    n, m = map(int, input().split())
    idx = list(map(int, input().split()))
    B = [0] * (n + 1)
    for i in idx: B[i] = 1
    A = [0] * (n + 1)
    D = [[]]
    for i in range(1, n + 1):
        d = divisors_list(i)
        D.append(d)
        for j in d: A[j] ^= 1
    ans = 0
    for i in range(n, 0, -1):
        if A[i] != B[i]:
            ans += 1
            d = D[i]
            for j in d: A[j] ^= 1
    print(ans)


if __name__ == '__main__':
    main()
0