結果

問題 No.1653 Squarefree
ユーザー ntudantuda
提出日時 2021-08-27 22:38:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 898 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 276,908 KB
最終ジャッジ日時 2024-11-21 03:42:56
合計ジャッジ時間 46,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
53,888 KB
testcase_02 AC 39 ms
53,120 KB
testcase_03 AC 50 ms
62,720 KB
testcase_04 AC 41 ms
54,144 KB
testcase_05 AC 40 ms
54,016 KB
testcase_06 AC 42 ms
53,760 KB
testcase_07 AC 41 ms
54,016 KB
testcase_08 AC 41 ms
54,144 KB
testcase_09 AC 41 ms
54,016 KB
testcase_10 AC 40 ms
53,888 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,568 ms
264,296 KB
testcase_14 AC 1,562 ms
264,560 KB
testcase_15 AC 1,560 ms
264,556 KB
testcase_16 AC 1,550 ms
263,016 KB
testcase_17 AC 1,550 ms
264,440 KB
testcase_18 AC 1,554 ms
263,272 KB
testcase_19 AC 1,558 ms
263,388 KB
testcase_20 AC 1,568 ms
264,476 KB
testcase_21 AC 1,566 ms
264,432 KB
testcase_22 AC 1,567 ms
264,304 KB
testcase_23 AC 1,552 ms
264,432 KB
testcase_24 WA -
testcase_25 AC 1,577 ms
263,456 KB
testcase_26 AC 1,545 ms
264,532 KB
testcase_27 AC 1,590 ms
263,252 KB
testcase_28 AC 1,515 ms
275,124 KB
testcase_29 AC 1,561 ms
264,512 KB
testcase_30 AC 1,560 ms
264,432 KB
testcase_31 AC 1,557 ms
264,304 KB
testcase_32 AC 1,568 ms
264,560 KB
testcase_33 WA -
testcase_34 AC 1,557 ms
264,552 KB
testcase_35 AC 1,573 ms
264,436 KB
testcase_36 AC 870 ms
256,384 KB
testcase_37 AC 861 ms
256,256 KB
testcase_38 AC 865 ms
256,128 KB
testcase_39 AC 872 ms
256,128 KB
testcase_40 AC 865 ms
256,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math, copy,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)))
AL = set(range(L,R+1))
for p in PL:
    p2 = p*p 
    for i in range(L//p2,R//p2+1):
        if i*p2 in AL:
            AL.remove(i*p2)
def check(x,y):
    return x >= y*y
AL2 = copy.copy(AL)
for a in AL2:
    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:
        AL.remove(a)
print(len(AL))
            
0