結果

問題 No.1653 Squarefree
ユーザー chocoruskchocorusk
提出日時 2021-07-31 02:49:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 935 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-10-14 08:16:59
合計ジャッジ時間 10,948 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
100,096 KB
testcase_01 AC 100 ms
73,728 KB
testcase_02 AC 98 ms
73,600 KB
testcase_03 AC 99 ms
75,520 KB
testcase_04 AC 94 ms
73,600 KB
testcase_05 AC 96 ms
73,728 KB
testcase_06 AC 95 ms
73,856 KB
testcase_07 AC 95 ms
73,856 KB
testcase_08 AC 95 ms
73,856 KB
testcase_09 AC 95 ms
73,856 KB
testcase_10 AC 97 ms
73,984 KB
testcase_11 AC 240 ms
97,024 KB
testcase_12 AC 237 ms
97,024 KB
testcase_13 AC 298 ms
99,840 KB
testcase_14 AC 316 ms
100,096 KB
testcase_15 AC 301 ms
100,224 KB
testcase_16 AC 299 ms
99,840 KB
testcase_17 AC 309 ms
100,096 KB
testcase_18 AC 314 ms
99,840 KB
testcase_19 AC 316 ms
99,840 KB
testcase_20 AC 317 ms
99,968 KB
testcase_21 AC 310 ms
100,224 KB
testcase_22 AC 314 ms
99,712 KB
testcase_23 AC 312 ms
99,584 KB
testcase_24 AC 299 ms
99,584 KB
testcase_25 AC 299 ms
99,968 KB
testcase_26 AC 310 ms
100,352 KB
testcase_27 AC 309 ms
99,712 KB
testcase_28 AC 313 ms
99,968 KB
testcase_29 AC 316 ms
99,840 KB
testcase_30 AC 346 ms
100,096 KB
testcase_31 AC 308 ms
99,712 KB
testcase_32 AC 308 ms
100,096 KB
testcase_33 AC 310 ms
99,584 KB
testcase_34 AC 306 ms
99,840 KB
testcase_35 AC 300 ms
99,968 KB
testcase_36 AC 96 ms
73,984 KB
testcase_37 AC 98 ms
73,600 KB
testcase_38 AC 96 ms
73,984 KB
testcase_39 AC 94 ms
73,856 KB
testcase_40 AC 96 ms
73,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read=sys.stdin.buffer.read
readline=sys.stdin.buffer.readline
readlines=sys.stdin.buffer.readlines
import math
def prime_sieve(n):
    isprime=[True]*(n+1)
    isprime[0]=False
    isprime[1]=False
    for i in range(2, n+1):
        if isprime[i]:
            for j in range(2*i, n+1, i):
                isprime[j]=False
    return isprime
isprime=prime_sieve(1000000)
l, r=map(int, readline().split())
v=list(range(l, r+1))
sqf=[True]*(r-l+1)
for p in range(2, 1000000):
    if not isprime[p]:
        continue
    for i in range((l+p-1)//p*p, r+1, p):
        if not sqf[i-l]:
            continue
        v[i-l]//=p
        if v[i-l]%p==0:
            sqf[i-l]=False
ans=0
for i in range(r-l+1):
    if not sqf[i]:
        continue
    if v[i]==1:
        ans+=1
        continue
    sq=int(math.sqrt(v[i]))
    ans+=1
    for j in range(sq, sq+2):
        if j*j==v[i]:
            ans-=1
            break
print(ans)
0