結果

問題 No.1946 ロッカーの問題
ユーザー siganaisiganai
提出日時 2022-05-21 01:24:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 714 ms / 3,000 ms
コード長 1,060 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 146,364 KB
最終ジャッジ日時 2024-09-20 10:57:20
合計ジャッジ時間 7,206 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
64,128 KB
testcase_01 AC 67 ms
63,872 KB
testcase_02 AC 714 ms
136,192 KB
testcase_03 AC 657 ms
146,364 KB
testcase_04 AC 639 ms
136,680 KB
testcase_05 AC 406 ms
117,120 KB
testcase_06 AC 501 ms
122,112 KB
testcase_07 AC 361 ms
103,040 KB
testcase_08 AC 169 ms
92,088 KB
testcase_09 AC 578 ms
138,296 KB
testcase_10 AC 469 ms
122,088 KB
testcase_11 AC 74 ms
74,112 KB
testcase_12 AC 215 ms
96,608 KB
testcase_13 AC 59 ms
63,872 KB
testcase_14 AC 59 ms
63,872 KB
testcase_15 AC 90 ms
80,896 KB
testcase_16 AC 58 ms
64,000 KB
testcase_17 AC 258 ms
96,916 KB
testcase_18 AC 642 ms
136,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
mod=998244353

import sys
input=sys.stdin.readline
def divisor(n):
    sq = n**0.5
    border = int(sq)
    table = []
    bigs = []
    for small in range(1, border+1):
        if n%small == 0:
            table.append(small)
            big = n//small
            bigs.append(big)
    if border == sq:#nが平方数
        bigs.pop()
    table += reversed(bigs)
    return table
n,m=map(int,input().split())
a=list(map(int,input().split()))

open = [0] * (n+1)
div = [[] for _ in range(n+1)]
for i in range(1,n+1):
    for j in range(i,n+1,i):
        div[j].append(i)
for i in range(1,n+1):
    for j in div[i]:
        open[j] ^= 1
fact = [0] * (n+1)
for aa in a:
    fact[aa] = 1
ans = 0


for i in range(1,n+1)[::-1]:
    #print(open,fact)
    if fact[i] != open[i]:
        ans += 1
        for j in div[i]:
            open[j] ^= 1
print(ans)
0