結果

問題 No.1653 Squarefree
ユーザー ntudantuda
提出日時 2021-08-28 14:29:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,635 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 258,256 KB
最終ジャッジ日時 2024-05-01 15:57:22
合計ジャッジ時間 45,537 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,635 ms
255,044 KB
testcase_01 AC 35 ms
53,136 KB
testcase_02 AC 35 ms
52,796 KB
testcase_03 AC 46 ms
64,584 KB
testcase_04 AC 35 ms
53,112 KB
testcase_05 AC 34 ms
54,020 KB
testcase_06 AC 36 ms
53,464 KB
testcase_07 AC 34 ms
53,072 KB
testcase_08 AC 35 ms
53,456 KB
testcase_09 AC 35 ms
52,928 KB
testcase_10 AC 36 ms
53,320 KB
testcase_11 AC 231 ms
75,536 KB
testcase_12 AC 221 ms
76,296 KB
testcase_13 AC 1,583 ms
256,044 KB
testcase_14 AC 1,566 ms
256,156 KB
testcase_15 AC 1,606 ms
256,052 KB
testcase_16 AC 1,624 ms
254,976 KB
testcase_17 AC 1,577 ms
256,108 KB
testcase_18 AC 1,584 ms
255,900 KB
testcase_19 AC 1,585 ms
255,440 KB
testcase_20 AC 1,569 ms
256,176 KB
testcase_21 AC 1,572 ms
256,060 KB
testcase_22 AC 1,550 ms
256,644 KB
testcase_23 AC 1,575 ms
256,248 KB
testcase_24 AC 1,560 ms
258,256 KB
testcase_25 AC 1,560 ms
255,344 KB
testcase_26 AC 1,544 ms
255,892 KB
testcase_27 AC 1,535 ms
255,248 KB
testcase_28 AC 1,518 ms
257,624 KB
testcase_29 AC 1,597 ms
256,112 KB
testcase_30 AC 1,556 ms
255,856 KB
testcase_31 AC 1,552 ms
255,916 KB
testcase_32 AC 1,589 ms
256,072 KB
testcase_33 AC 1,535 ms
256,188 KB
testcase_34 AC 1,575 ms
255,848 KB
testcase_35 AC 1,621 ms
256,112 KB
testcase_36 AC 827 ms
255,564 KB
testcase_37 AC 825 ms
255,908 KB
testcase_38 AC 840 ms
255,816 KB
testcase_39 AC 816 ms
256,032 KB
testcase_40 AC 827 ms
255,256 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