結果

問題 No.1653 Squarefree
ユーザー kozykozy
提出日時 2021-08-20 23:02:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 141,180 KB
最終ジャッジ日時 2024-10-14 08:33:48
合計ジャッジ時間 8,872 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 241 ms
140,564 KB
testcase_01 AC 84 ms
59,540 KB
testcase_02 AC 59 ms
59,612 KB
testcase_03 AC 98 ms
64,488 KB
testcase_04 AC 87 ms
60,636 KB
testcase_05 AC 87 ms
60,700 KB
testcase_06 AC 85 ms
59,688 KB
testcase_07 AC 85 ms
61,216 KB
testcase_08 AC 85 ms
61,236 KB
testcase_09 AC 85 ms
60,776 KB
testcase_10 AC 84 ms
60,064 KB
testcase_11 AC 189 ms
140,668 KB
testcase_12 AC 199 ms
140,736 KB
testcase_13 AC 247 ms
140,752 KB
testcase_14 AC 238 ms
140,632 KB
testcase_15 AC 235 ms
140,836 KB
testcase_16 AC 231 ms
140,592 KB
testcase_17 AC 234 ms
141,092 KB
testcase_18 AC 235 ms
140,632 KB
testcase_19 AC 235 ms
140,460 KB
testcase_20 AC 233 ms
140,980 KB
testcase_21 AC 232 ms
140,984 KB
testcase_22 AC 234 ms
140,936 KB
testcase_23 AC 235 ms
140,472 KB
testcase_24 AC 233 ms
140,732 KB
testcase_25 AC 235 ms
140,732 KB
testcase_26 AC 239 ms
141,080 KB
testcase_27 AC 242 ms
140,624 KB
testcase_28 AC 243 ms
140,864 KB
testcase_29 AC 237 ms
140,736 KB
testcase_30 AC 237 ms
140,844 KB
testcase_31 AC 239 ms
140,760 KB
testcase_32 AC 235 ms
141,180 KB
testcase_33 AC 238 ms
140,892 KB
testcase_34 AC 243 ms
140,596 KB
testcase_35 AC 247 ms
140,868 KB
testcase_36 AC 87 ms
60,540 KB
testcase_37 AC 87 ms
59,924 KB
testcase_38 AC 86 ms
59,504 KB
testcase_39 AC 87 ms
60,176 KB
testcase_40 AC 87 ms
60,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=set()
L,R=map(int,input().split())
M=10**6
for i in range(2,M+1):
  s=i**2
  l=s+(s*((L-1)//s))
  for j in range(l,R+1,s):
    S.add(j)
for a in range(1,M+1):
  l,r=((L-1)//a)+1,R//a
  if l>r:
    continue
  #l~rにある平方数
  s=int(l**0.5)-2
  while True:
    if s<=1:
      s=2
    if l<=s**2<=r:
      S.add((s**2)*a)
      s+=1
    elif s**2<l:
      s+=1
    else:
      break
print(R-L+1-len(S))
0