結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 41 ms
53,856 KB
testcase_02 AC 40 ms
54,472 KB
testcase_03 AC 49 ms
63,908 KB
testcase_04 WA -
testcase_05 AC 40 ms
54,148 KB
testcase_06 WA -
testcase_07 AC 39 ms
54,396 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 41 ms
54,468 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,547 ms
264,296 KB
testcase_14 AC 1,537 ms
264,096 KB
testcase_15 AC 1,552 ms
264,652 KB
testcase_16 AC 1,545 ms
263,424 KB
testcase_17 AC 1,542 ms
264,104 KB
testcase_18 AC 1,539 ms
263,376 KB
testcase_19 AC 1,597 ms
263,352 KB
testcase_20 AC 1,553 ms
264,696 KB
testcase_21 AC 1,550 ms
264,048 KB
testcase_22 AC 1,551 ms
264,652 KB
testcase_23 AC 1,541 ms
264,452 KB
testcase_24 WA -
testcase_25 AC 1,547 ms
263,272 KB
testcase_26 AC 1,539 ms
264,408 KB
testcase_27 AC 1,545 ms
263,448 KB
testcase_28 AC 1,487 ms
275,232 KB
testcase_29 AC 1,557 ms
264,272 KB
testcase_30 AC 1,547 ms
264,432 KB
testcase_31 AC 1,548 ms
264,236 KB
testcase_32 AC 1,553 ms
264,104 KB
testcase_33 WA -
testcase_34 AC 1,550 ms
264,104 KB
testcase_35 AC 1,553 ms
264,524 KB
testcase_36 AC 876 ms
257,228 KB
testcase_37 AC 877 ms
256,500 KB
testcase_38 AC 874 ms
256,992 KB
testcase_39 AC 874 ms
256,972 KB
testcase_40 AC 880 ms
256,816 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