結果

問題 No.1653 Squarefree
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-08-20 23:03:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 768 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 243,584 KB
最終ジャッジ日時 2024-10-14 08:35:07
合計ジャッジ時間 24,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 712 ms
243,072 KB
testcase_01 AC 179 ms
76,160 KB
testcase_02 AC 180 ms
75,776 KB
testcase_03 AC 192 ms
75,648 KB
testcase_04 AC 177 ms
76,032 KB
testcase_05 AC 186 ms
76,160 KB
testcase_06 AC 181 ms
76,288 KB
testcase_07 AC 190 ms
75,904 KB
testcase_08 AC 189 ms
76,032 KB
testcase_09 AC 180 ms
76,032 KB
testcase_10 AC 184 ms
75,776 KB
testcase_11 AC 447 ms
196,484 KB
testcase_12 AC 446 ms
196,720 KB
testcase_13 AC 700 ms
243,328 KB
testcase_14 AC 744 ms
243,072 KB
testcase_15 AC 717 ms
243,200 KB
testcase_16 AC 712 ms
243,072 KB
testcase_17 AC 712 ms
243,200 KB
testcase_18 AC 768 ms
243,072 KB
testcase_19 AC 709 ms
243,072 KB
testcase_20 AC 704 ms
243,456 KB
testcase_21 AC 738 ms
243,456 KB
testcase_22 AC 712 ms
243,328 KB
testcase_23 AC 710 ms
243,200 KB
testcase_24 AC 709 ms
243,328 KB
testcase_25 AC 707 ms
243,072 KB
testcase_26 AC 706 ms
243,200 KB
testcase_27 AC 709 ms
243,072 KB
testcase_28 AC 705 ms
243,456 KB
testcase_29 AC 706 ms
243,456 KB
testcase_30 AC 707 ms
243,200 KB
testcase_31 AC 715 ms
243,072 KB
testcase_32 AC 712 ms
243,072 KB
testcase_33 AC 722 ms
243,200 KB
testcase_34 AC 704 ms
243,072 KB
testcase_35 AC 706 ms
243,584 KB
testcase_36 AC 502 ms
76,032 KB
testcase_37 AC 500 ms
75,904 KB
testcase_38 AC 503 ms
75,904 KB
testcase_39 AC 506 ms
76,032 KB
testcase_40 AC 501 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline  # 文字列入力はするな!!
from _collections import defaultdict

l,r=map(int,input().split())

dic=defaultdict(lambda:1)

for cnt in range(1,1000000+10):
    a=(l/cnt)**0.5
    a=int(a)-1
    if a<0:a=0
    b=(r/cnt)**0.5
    b=int(b)+1
    for i in range(a,b+1):
        if i==1:continue
        if l<=cnt*(i**2)<=r:dic[cnt*(i**2)]=0


ans=0
for i in range(2,10**6+10):
    x=i**2
    k=l//x
    while k*x<=r:
        if l<=k*x<=r:dic[k*x]=0
        k+=1



for i in range(l,r+1):
    ans+=dic[i]
print(ans)



0