結果

問題 No.1653 Squarefree
ユーザー titiatitia
提出日時 2021-08-21 04:11:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 901 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 246,272 KB
最終ジャッジ日時 2024-10-14 12:50:59
合計ジャッジ時間 32,384 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 865 ms
246,144 KB
testcase_01 AC 521 ms
187,576 KB
testcase_02 AC 500 ms
187,536 KB
testcase_03 AC 542 ms
200,448 KB
testcase_04 AC 509 ms
187,264 KB
testcase_05 AC 503 ms
187,392 KB
testcase_06 AC 497 ms
187,512 KB
testcase_07 AC 500 ms
187,520 KB
testcase_08 AC 504 ms
187,776 KB
testcase_09 AC 504 ms
188,032 KB
testcase_10 AC 512 ms
187,768 KB
testcase_11 AC 818 ms
246,016 KB
testcase_12 AC 793 ms
245,888 KB
testcase_13 AC 843 ms
246,016 KB
testcase_14 AC 870 ms
246,016 KB
testcase_15 AC 857 ms
245,632 KB
testcase_16 AC 868 ms
245,888 KB
testcase_17 AC 864 ms
245,632 KB
testcase_18 AC 851 ms
245,888 KB
testcase_19 AC 834 ms
246,120 KB
testcase_20 AC 845 ms
245,932 KB
testcase_21 AC 850 ms
245,868 KB
testcase_22 AC 876 ms
246,272 KB
testcase_23 AC 880 ms
245,632 KB
testcase_24 AC 901 ms
245,632 KB
testcase_25 AC 844 ms
245,888 KB
testcase_26 AC 843 ms
245,760 KB
testcase_27 AC 852 ms
246,144 KB
testcase_28 AC 857 ms
246,016 KB
testcase_29 AC 875 ms
246,072 KB
testcase_30 AC 834 ms
245,760 KB
testcase_31 AC 858 ms
246,084 KB
testcase_32 AC 870 ms
246,144 KB
testcase_33 AC 833 ms
245,888 KB
testcase_34 AC 844 ms
245,760 KB
testcase_35 AC 841 ms
246,076 KB
testcase_36 AC 498 ms
187,776 KB
testcase_37 AC 508 ms
187,776 KB
testcase_38 AC 495 ms
187,392 KB
testcase_39 AC 504 ms
187,776 KB
testcase_40 AC 527 ms
187,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L0,R0=map(int,input().split())

if L0==1:
    ANS=1
    L0+=1
else:
    ANS=0
A=[]

for i in range(L0,R0+1):
    A.append(i)

import math

x=10**7+100

L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]

for p in Primes:
    for i in range((L0+p-1)//p*p,(R0+p)//p*p,p):
        x=i-L0

        if A[x]%(p*p)==0:
            A[x]=0

        if A[x]%p==0:
            A[x]//=p

for a in A:
    if a==0:
        continue
    sq=int(math.sqrt(a))
    if a==1 or sq*sq!=a:
        ANS+=1

print(ANS)
            
        



0