結果

問題 No.1653 Squarefree
ユーザー rlangevinrlangevin
提出日時 2023-10-25 08:56:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 973 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 84,264 KB
最終ジャッジ日時 2024-09-25 04:04:27
合計ジャッジ時間 27,318 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 933 ms
84,120 KB
testcase_01 AC 56 ms
59,332 KB
testcase_02 AC 59 ms
59,688 KB
testcase_03 AC 87 ms
75,808 KB
testcase_04 AC 58 ms
60,196 KB
testcase_05 AC 58 ms
58,540 KB
testcase_06 AC 58 ms
58,740 KB
testcase_07 AC 58 ms
60,064 KB
testcase_08 AC 58 ms
59,436 KB
testcase_09 AC 58 ms
60,028 KB
testcase_10 AC 57 ms
59,104 KB
testcase_11 AC 592 ms
83,636 KB
testcase_12 AC 589 ms
83,800 KB
testcase_13 AC 860 ms
84,044 KB
testcase_14 AC 951 ms
84,092 KB
testcase_15 AC 928 ms
84,092 KB
testcase_16 AC 908 ms
84,020 KB
testcase_17 AC 916 ms
84,204 KB
testcase_18 AC 922 ms
84,264 KB
testcase_19 AC 940 ms
83,992 KB
testcase_20 AC 869 ms
84,124 KB
testcase_21 AC 955 ms
84,248 KB
testcase_22 AC 870 ms
84,100 KB
testcase_23 AC 941 ms
83,984 KB
testcase_24 AC 973 ms
84,240 KB
testcase_25 AC 955 ms
83,928 KB
testcase_26 AC 818 ms
84,032 KB
testcase_27 AC 891 ms
84,008 KB
testcase_28 AC 942 ms
84,192 KB
testcase_29 AC 952 ms
83,984 KB
testcase_30 AC 959 ms
83,888 KB
testcase_31 AC 904 ms
84,244 KB
testcase_32 AC 936 ms
84,104 KB
testcase_33 AC 926 ms
84,056 KB
testcase_34 AC 917 ms
84,056 KB
testcase_35 AC 930 ms
84,148 KB
testcase_36 AC 59 ms
58,416 KB
testcase_37 AC 59 ms
59,232 KB
testcase_38 AC 59 ms
59,996 KB
testcase_39 AC 59 ms
59,196 KB
testcase_40 AC 59 ms
59,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isqrt(n):
    yes = 1
    no = 10 ** 9 + 5
    while no - yes != 1:
        mid = (yes + no)//2
        if mid * mid <= n:
            yes = mid
        else:
            no = mid
    return yes * yes == n

L, R = map(int, input().split())
D = list(range(L, R + 1))
M = 10 ** 6 + 5
for i in range(2, M):
    start = (L + i - 1)//i * i
    for j in range(start - L, R - L + 1, i):
        if D[j] % (i * i) == 0:
            D[j] = 0
        elif D[j] % i == 0:
            D[j] //= i

ans = 0
for i in range(R - L + 1):
    if D[i] == 1:
        ans += 1
    elif D[i] == 0:
        continue    
    elif not isqrt(D[i]):
        ans += 1

print(ans)
0