結果

問題 No.1946 ロッカーの問題
ユーザー akasia_midoriakasia_midori
提出日時 2022-05-21 12:04:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 925 ms / 3,000 ms
コード長 870 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 122,624 KB
最終ジャッジ日時 2024-09-20 11:26:27
合計ジャッジ時間 6,659 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 925 ms
104,576 KB
testcase_03 AC 336 ms
121,216 KB
testcase_04 AC 925 ms
104,704 KB
testcase_05 AC 667 ms
95,872 KB
testcase_06 AC 771 ms
98,688 KB
testcase_07 AC 552 ms
93,440 KB
testcase_08 AC 132 ms
93,568 KB
testcase_09 AC 299 ms
116,340 KB
testcase_10 AC 259 ms
121,472 KB
testcase_11 AC 69 ms
71,552 KB
testcase_12 AC 286 ms
88,704 KB
testcase_13 AC 37 ms
51,940 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 99 ms
77,312 KB
testcase_16 AC 37 ms
52,096 KB
testcase_17 AC 73 ms
91,392 KB
testcase_18 AC 101 ms
122,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))

def make_divisors(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)

    # divisors.sort()
    return divisors

input_count = 0
N, M = mi()
A = mi()
NA = [1]*N

C = []
for i in range(1,N+1):
    if (N//i)%2==0:
        C.append(1)
    else:
        C.append(-1)

for a in A:
    NA[a-1] = -1

hoge = []
for c, nn in zip(C, NA):
    if c!=nn:
        hoge.append(1)
    else:
        hoge.append(0)

count = 0
for i in range(N-1, -1, -1):
    if hoge[i]==1:
        count += 1
        for j in make_divisors(i+1):
            if hoge[j-1] == 0:
                hoge[j-1] = 1
            else:
                hoge[j-1] = 0

print(count)
0