結果

問題 No.1653 Squarefree
ユーザー mkawa2mkawa2
提出日時 2023-02-19 15:35:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,194 ms / 2,000 ms
コード長 1,357 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 81,812 KB
実行使用メモリ 248,960 KB
最終ジャッジ日時 2024-07-20 15:50:57
合計ジャッジ時間 32,496 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 998 ms
196,980 KB
testcase_01 AC 250 ms
225,408 KB
testcase_02 AC 257 ms
225,172 KB
testcase_03 AC 320 ms
241,024 KB
testcase_04 AC 249 ms
225,152 KB
testcase_05 AC 250 ms
225,280 KB
testcase_06 AC 277 ms
224,640 KB
testcase_07 AC 250 ms
224,896 KB
testcase_08 AC 246 ms
225,536 KB
testcase_09 AC 244 ms
224,896 KB
testcase_10 AC 245 ms
224,896 KB
testcase_11 AC 686 ms
248,832 KB
testcase_12 AC 679 ms
248,960 KB
testcase_13 AC 978 ms
197,252 KB
testcase_14 AC 946 ms
197,084 KB
testcase_15 AC 945 ms
197,172 KB
testcase_16 AC 955 ms
197,396 KB
testcase_17 AC 977 ms
196,936 KB
testcase_18 AC 945 ms
196,988 KB
testcase_19 AC 1,058 ms
197,264 KB
testcase_20 AC 1,040 ms
197,272 KB
testcase_21 AC 1,130 ms
197,044 KB
testcase_22 AC 1,008 ms
197,172 KB
testcase_23 AC 1,016 ms
196,812 KB
testcase_24 AC 1,024 ms
196,852 KB
testcase_25 AC 994 ms
197,296 KB
testcase_26 AC 978 ms
197,356 KB
testcase_27 AC 1,010 ms
197,684 KB
testcase_28 AC 1,180 ms
196,944 KB
testcase_29 AC 1,120 ms
197,296 KB
testcase_30 AC 996 ms
197,224 KB
testcase_31 AC 1,004 ms
197,280 KB
testcase_32 AC 994 ms
197,176 KB
testcase_33 AC 927 ms
197,008 KB
testcase_34 AC 989 ms
196,868 KB
testcase_35 AC 1,194 ms
197,148 KB
testcase_36 AC 296 ms
227,200 KB
testcase_37 AC 291 ms
227,328 KB
testcase_38 AC 295 ms
226,944 KB
testcase_39 AC 299 ms
227,712 KB
testcase_40 AC 307 ms
227,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

def floor_sqrt(x):
    a = round(x**0.5-0.49)
    while a**2 > x: a -= 1
    return a

def issquare(a):
    if a == 1: return False
    if a <= 1000000000000: return a in a2
    r = floor_sqrt(a)
    return r**2 == a

mx = 1000001

l, r = LI()
r += 1
# a^2*b
dp = [0]*(r-l)

a2 = set()
for a in range(2, mx):
    a = a*a
    a2.add(a)
    if a >= r: continue
    s = (l+a-1)//a*a
    for i in range(s, r, a):
        dp[i-l] = 1
# pDB(dp)

for a in range(1, mx):
    if a >= r: break
    s = (l+a-1)//a*a
    for i in range(s, r, a):
        if dp[i-l]: continue
        if issquare(i//a): dp[i-l] = 1
# pDB(dp)

print(r-l-sum(dp))
0