結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
54,784 KB
testcase_02 AC 37 ms
54,800 KB
testcase_03 AC 45 ms
63,108 KB
testcase_04 AC 39 ms
55,260 KB
testcase_05 AC 38 ms
54,748 KB
testcase_06 AC 36 ms
54,596 KB
testcase_07 AC 36 ms
55,396 KB
testcase_08 AC 38 ms
54,492 KB
testcase_09 AC 38 ms
55,180 KB
testcase_10 AC 38 ms
54,552 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,476 ms
264,756 KB
testcase_14 AC 1,483 ms
264,620 KB
testcase_15 AC 1,487 ms
264,448 KB
testcase_16 AC 1,506 ms
263,744 KB
testcase_17 AC 1,488 ms
264,588 KB
testcase_18 AC 1,488 ms
263,552 KB
testcase_19 AC 1,483 ms
263,416 KB
testcase_20 AC 1,482 ms
264,516 KB
testcase_21 AC 1,490 ms
264,384 KB
testcase_22 AC 1,473 ms
264,436 KB
testcase_23 AC 1,477 ms
264,524 KB
testcase_24 WA -
testcase_25 AC 1,483 ms
263,488 KB
testcase_26 AC 1,490 ms
264,360 KB
testcase_27 AC 1,518 ms
263,624 KB
testcase_28 AC 1,446 ms
275,248 KB
testcase_29 AC 1,520 ms
264,636 KB
testcase_30 AC 1,509 ms
264,624 KB
testcase_31 AC 1,502 ms
264,756 KB
testcase_32 AC 1,487 ms
264,360 KB
testcase_33 WA -
testcase_34 AC 1,497 ms
264,712 KB
testcase_35 AC 1,498 ms
264,604 KB
testcase_36 AC 832 ms
256,744 KB
testcase_37 AC 852 ms
256,804 KB
testcase_38 AC 845 ms
256,508 KB
testcase_39 AC 842 ms
256,768 KB
testcase_40 AC 843 ms
256,596 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