結果

問題 No.1946 ロッカーの問題
ユーザー siganaisiganai
提出日時 2022-05-20 22:10:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,473 ms / 3,000 ms
コード長 1,014 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,924 KB
実行使用メモリ 145,120 KB
最終ジャッジ日時 2024-09-20 08:21:25
合計ジャッジ時間 14,078 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
64,180 KB
testcase_01 AC 52 ms
64,392 KB
testcase_02 AC 1,447 ms
132,372 KB
testcase_03 AC 1,473 ms
145,120 KB
testcase_04 AC 1,469 ms
132,760 KB
testcase_05 AC 971 ms
116,300 KB
testcase_06 AC 1,128 ms
121,560 KB
testcase_07 AC 820 ms
110,908 KB
testcase_08 AC 386 ms
94,344 KB
testcase_09 AC 1,301 ms
135,300 KB
testcase_10 AC 1,043 ms
126,768 KB
testcase_11 AC 95 ms
78,692 KB
testcase_12 AC 486 ms
98,992 KB
testcase_13 AC 52 ms
64,056 KB
testcase_14 AC 53 ms
64,536 KB
testcase_15 AC 127 ms
81,848 KB
testcase_16 AC 55 ms
64,928 KB
testcase_17 AC 599 ms
102,024 KB
testcase_18 AC 1,466 ms
132,440 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 i in range(1,n+1):
    div.append(divisor(i))
for i in range(1,n+1):
    for j in div[i-1]:
        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-1]:
            open[j] ^= 1
print(ans)
0