結果

問題 No.1653 Squarefree
ユーザー ayaoniayaoni
提出日時 2021-08-20 22:03:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 877 ms / 2,000 ms
コード長 1,032 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 84,928 KB
最終ジャッジ日時 2024-10-14 08:19:55
合計ジャッジ時間 25,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 835 ms
84,608 KB
testcase_01 AC 101 ms
61,568 KB
testcase_02 AC 107 ms
61,568 KB
testcase_03 AC 131 ms
76,548 KB
testcase_04 AC 104 ms
61,824 KB
testcase_05 AC 103 ms
61,184 KB
testcase_06 AC 106 ms
61,568 KB
testcase_07 AC 105 ms
61,440 KB
testcase_08 AC 105 ms
61,568 KB
testcase_09 AC 103 ms
61,568 KB
testcase_10 AC 105 ms
61,440 KB
testcase_11 AC 654 ms
84,224 KB
testcase_12 AC 647 ms
84,336 KB
testcase_13 AC 839 ms
84,928 KB
testcase_14 AC 877 ms
84,480 KB
testcase_15 AC 859 ms
84,736 KB
testcase_16 AC 862 ms
84,608 KB
testcase_17 AC 855 ms
84,736 KB
testcase_18 AC 842 ms
84,608 KB
testcase_19 AC 845 ms
84,736 KB
testcase_20 AC 835 ms
84,352 KB
testcase_21 AC 840 ms
84,736 KB
testcase_22 AC 810 ms
84,608 KB
testcase_23 AC 831 ms
84,620 KB
testcase_24 AC 843 ms
84,864 KB
testcase_25 AC 851 ms
84,580 KB
testcase_26 AC 830 ms
84,736 KB
testcase_27 AC 833 ms
84,480 KB
testcase_28 AC 861 ms
84,480 KB
testcase_29 AC 837 ms
84,480 KB
testcase_30 AC 835 ms
84,480 KB
testcase_31 AC 853 ms
84,864 KB
testcase_32 AC 834 ms
84,736 KB
testcase_33 AC 844 ms
84,736 KB
testcase_34 AC 855 ms
84,608 KB
testcase_35 AC 836 ms
84,480 KB
testcase_36 AC 104 ms
61,440 KB
testcase_37 AC 103 ms
61,952 KB
testcase_38 AC 103 ms
61,952 KB
testcase_39 AC 102 ms
61,824 KB
testcase_40 AC 104 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


L,R = MI()

X = [i for i in range(L,R+1)]
for i in range(2,10**6+1):
    s = i**2
    for j in range(s*((L+s-1)//s)-L,s*(R//s+1)-L,s):
        X[j] = 0
    for j in range(i*((L+i-1)//i)-L,i*(R//i+1)-L,i):
        if X[j] % i == 0:
            X[j] //= i


def is_square(x):
    y = int(x**.5)
    for i in range(y-1,y+2):
        if i**2 == x:
            return True
    return False


ans = 0
for x in X:
    if x == 1:
        ans += 1
    elif x == 0:
        continue
    else:
        if not is_square(x):
            ans += 1

print(ans)
0