結果

問題 No.1653 Squarefree
ユーザー ntudantuda
提出日時 2021-08-28 14:22:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,118 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 258,272 KB
最終ジャッジ日時 2024-05-01 15:54:27
合計ジャッジ時間 46,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,658 ms
255,516 KB
testcase_01 AC 37 ms
53,472 KB
testcase_02 AC 37 ms
53,016 KB
testcase_03 AC 49 ms
63,932 KB
testcase_04 AC 36 ms
53,868 KB
testcase_05 AC 36 ms
53,060 KB
testcase_06 AC 34 ms
53,456 KB
testcase_07 AC 36 ms
53,708 KB
testcase_08 AC 37 ms
53,880 KB
testcase_09 AC 37 ms
54,364 KB
testcase_10 AC 36 ms
53,724 KB
testcase_11 AC 219 ms
75,672 KB
testcase_12 AC 226 ms
74,548 KB
testcase_13 AC 1,594 ms
255,712 KB
testcase_14 AC 1,598 ms
255,892 KB
testcase_15 AC 1,700 ms
255,848 KB
testcase_16 AC 1,641 ms
255,452 KB
testcase_17 AC 1,624 ms
255,872 KB
testcase_18 AC 1,607 ms
255,204 KB
testcase_19 AC 1,580 ms
255,848 KB
testcase_20 AC 1,562 ms
256,132 KB
testcase_21 AC 1,582 ms
255,852 KB
testcase_22 AC 1,537 ms
256,172 KB
testcase_23 AC 1,596 ms
255,756 KB
testcase_24 AC 1,578 ms
258,272 KB
testcase_25 AC 1,569 ms
255,524 KB
testcase_26 AC 1,577 ms
256,844 KB
testcase_27 AC 1,547 ms
255,668 KB
testcase_28 AC 1,552 ms
257,648 KB
testcase_29 AC 1,590 ms
256,232 KB
testcase_30 AC 1,598 ms
255,844 KB
testcase_31 AC 1,614 ms
256,932 KB
testcase_32 AC 1,648 ms
256,004 KB
testcase_33 AC 1,639 ms
256,184 KB
testcase_34 AC 1,668 ms
256,008 KB
testcase_35 AC 1,673 ms
256,180 KB
testcase_36 AC 852 ms
256,196 KB
testcase_37 WA -
testcase_38 AC 862 ms
254,880 KB
testcase_39 AC 847 ms
255,488 KB
testcase_40 AC 855 ms
255,944 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):
    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
#print(A)
ans = 0
for a in A:
    if a > 0:
        ans += 1
print(ans)
0