結果

問題 No.1653 Squarefree
ユーザー shotoyooshotoyoo
提出日時 2021-08-20 23:07:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,330 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 84,072 KB
最終ジャッジ日時 2024-10-14 08:37:23
合計ジャッジ時間 39,239 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,325 ms
83,536 KB
testcase_01 AC 78 ms
60,608 KB
testcase_02 AC 81 ms
60,924 KB
testcase_03 AC 270 ms
75,596 KB
testcase_04 AC 77 ms
60,044 KB
testcase_05 AC 76 ms
60,560 KB
testcase_06 AC 77 ms
59,664 KB
testcase_07 AC 75 ms
60,540 KB
testcase_08 AC 77 ms
59,860 KB
testcase_09 AC 76 ms
60,452 KB
testcase_10 AC 76 ms
60,720 KB
testcase_11 AC 436 ms
83,736 KB
testcase_12 AC 435 ms
83,992 KB
testcase_13 AC 1,329 ms
83,668 KB
testcase_14 AC 1,318 ms
83,528 KB
testcase_15 AC 1,326 ms
83,840 KB
testcase_16 AC 1,323 ms
83,600 KB
testcase_17 AC 1,324 ms
83,588 KB
testcase_18 AC 1,326 ms
83,804 KB
testcase_19 AC 1,330 ms
83,688 KB
testcase_20 AC 1,323 ms
83,632 KB
testcase_21 AC 1,330 ms
83,716 KB
testcase_22 AC 1,327 ms
83,616 KB
testcase_23 AC 1,321 ms
83,776 KB
testcase_24 AC 1,326 ms
83,884 KB
testcase_25 AC 1,317 ms
83,904 KB
testcase_26 AC 1,315 ms
83,916 KB
testcase_27 AC 1,324 ms
83,656 KB
testcase_28 AC 1,311 ms
83,852 KB
testcase_29 AC 1,321 ms
84,072 KB
testcase_30 AC 1,320 ms
83,472 KB
testcase_31 AC 1,328 ms
83,580 KB
testcase_32 AC 1,321 ms
83,892 KB
testcase_33 AC 1,319 ms
83,680 KB
testcase_34 AC 1,323 ms
83,840 KB
testcase_35 AC 1,317 ms
83,632 KB
testcase_36 AC 583 ms
75,528 KB
testcase_37 AC 587 ms
75,832 KB
testcase_38 AC 586 ms
75,664 KB
testcase_39 AC 589 ms
75,712 KB
testcase_40 AC 586 ms
75,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))

def isqrt(n):
    """x*x<=nなる最大のx
    """
    x,y = n, (n+1)//2
    while y<x:
        x,y = y, (y + n//y) // 2
    return x

l,r = list(map(int, input().split()))
ok = [1]*(r-l+1)
# ok[i] : l+i
for i in range(2, 10**6+100):
    ii = i*i
    ll = ((l+ii-1)//ii)*ii
    for k in range(ll, r+1, ii):
        ok[k-l] = 0
for i in range(1,10**6+100):
    ir = r//i
    k = isqrt(ir)
    kk = k*k
    if kk<=10**6:
        continue
    if k>1 and l<=i*kk<=r:
        while i*kk-l>=0:
            ok[i*kk-l] = 0
            i -= 1
for v in range(max(2,l), r+1):
    vv = isqrt(v)
    if vv*vv==v:
        ok[v-l] = 0
ans = sum(ok)
print(ans)
0