結果

問題 No.1653 Squarefree
ユーザー ntudantuda
提出日時 2021-08-27 22:29:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 886 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 276,952 KB
最終ジャッジ日時 2024-05-01 03:13:11
合計ジャッジ時間 44,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
54,420 KB
testcase_02 AC 37 ms
54,228 KB
testcase_03 AC 47 ms
64,884 KB
testcase_04 WA -
testcase_05 AC 39 ms
55,276 KB
testcase_06 WA -
testcase_07 AC 38 ms
55,704 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 39 ms
55,308 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,506 ms
264,160 KB
testcase_14 AC 1,495 ms
264,600 KB
testcase_15 AC 1,500 ms
264,548 KB
testcase_16 AC 1,502 ms
263,432 KB
testcase_17 AC 1,495 ms
264,472 KB
testcase_18 AC 1,473 ms
263,480 KB
testcase_19 AC 1,450 ms
263,608 KB
testcase_20 AC 1,480 ms
264,472 KB
testcase_21 AC 1,487 ms
264,464 KB
testcase_22 AC 1,480 ms
264,648 KB
testcase_23 AC 1,471 ms
264,484 KB
testcase_24 WA -
testcase_25 AC 1,477 ms
263,440 KB
testcase_26 AC 1,492 ms
264,664 KB
testcase_27 AC 1,510 ms
263,184 KB
testcase_28 AC 1,436 ms
275,260 KB
testcase_29 AC 1,494 ms
264,424 KB
testcase_30 AC 1,497 ms
264,428 KB
testcase_31 AC 1,509 ms
264,496 KB
testcase_32 AC 1,496 ms
264,592 KB
testcase_33 WA -
testcase_34 AC 1,491 ms
264,508 KB
testcase_35 AC 1,493 ms
264,480 KB
testcase_36 AC 841 ms
257,676 KB
testcase_37 AC 833 ms
257,476 KB
testcase_38 AC 826 ms
257,860 KB
testcase_39 AC 841 ms
257,544 KB
testcase_40 AC 836 ms
256,868 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.floor(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