結果

問題 No.1653 Squarefree
ユーザー ntudantuda
提出日時 2021-08-28 14:29:49
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,110 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 258,132 KB
最終ジャッジ日時 2024-11-21 21:03:41
合計ジャッジ時間 51,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,787 ms
254,796 KB
testcase_01 AC 39 ms
52,708 KB
testcase_02 AC 39 ms
52,400 KB
testcase_03 AC 55 ms
63,356 KB
testcase_04 AC 40 ms
52,924 KB
testcase_05 AC 39 ms
53,136 KB
testcase_06 AC 39 ms
52,544 KB
testcase_07 AC 39 ms
52,540 KB
testcase_08 AC 39 ms
52,632 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 AC 252 ms
74,240 KB
testcase_12 AC 255 ms
74,240 KB
testcase_13 AC 1,799 ms
256,764 KB
testcase_14 AC 1,772 ms
255,784 KB
testcase_15 AC 1,965 ms
255,756 KB
testcase_16 AC 1,783 ms
254,592 KB
testcase_17 AC 1,799 ms
255,888 KB
testcase_18 TLE -
testcase_19 AC 1,770 ms
254,992 KB
testcase_20 AC 1,775 ms
255,756 KB
testcase_21 AC 1,774 ms
255,500 KB
testcase_22 AC 1,741 ms
255,792 KB
testcase_23 AC 1,792 ms
255,748 KB
testcase_24 AC 1,707 ms
258,132 KB
testcase_25 AC 1,746 ms
254,856 KB
testcase_26 AC 1,720 ms
256,008 KB
testcase_27 AC 1,745 ms
254,864 KB
testcase_28 AC 1,676 ms
257,536 KB
testcase_29 AC 1,760 ms
255,884 KB
testcase_30 AC 1,783 ms
256,012 KB
testcase_31 AC 1,783 ms
256,020 KB
testcase_32 AC 1,861 ms
255,628 KB
testcase_33 AC 1,733 ms
255,880 KB
testcase_34 AC 1,786 ms
255,884 KB
testcase_35 AC 1,782 ms
255,884 KB
testcase_36 AC 890 ms
255,116 KB
testcase_37 AC 904 ms
254,592 KB
testcase_38 AC 908 ms
254,720 KB
testcase_39 AC 886 ms
254,592 KB
testcase_40 AC 901 ms
254,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math, sys
L,R = map(int,input().split())
if R == 1:
    print(1)
    sys.exit()
# 素数リスト作成
def seachPrimeNum(N):
    max = int(N**0.5)
    seachList = [i for i in range(2,N+1)]
    primeNum = []
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum

PL = seachPrimeNum(math.ceil(pow(R,1/3)))
A = list(range(L,R+1))

for p in PL:
    p2 = p*p 
    for i in range(-(-L//p) * p - L, R//p * p - L + 1,p):
        j = 0
        while A[i] % p == 0:
            if j == 1:
                A[i] = -1
            else:
                A[i] //= p
            j += 1
def check(x,y):
    return x >= y*y
for i in range(R-L+1):
    a = A[i]
    if a > 1:
        lb = 0
        ub = R
        while ub - lb > 1:
            mid = (ub + lb) //2
            if check(a,mid):
                lb = mid
            else:
                ub = mid
        if a == lb * lb:
            A[i] = -1
ans = 0
for a in A:
    if a > 0:
        ans += 1
print(ans)
0