結果

問題 No.1653 Squarefree
ユーザー H3PO4H3PO4
提出日時 2024-05-01 14:56:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,013 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 103,912 KB
最終ジャッジ日時 2024-11-21 19:48:25
合計ジャッジ時間 66,619 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,945 ms
53,584 KB
testcase_01 AC 559 ms
45,644 KB
testcase_02 AC 557 ms
45,772 KB
testcase_03 AC 1,384 ms
45,644 KB
testcase_04 AC 559 ms
45,644 KB
testcase_05 AC 562 ms
45,904 KB
testcase_06 AC 557 ms
45,776 KB
testcase_07 AC 559 ms
45,644 KB
testcase_08 AC 555 ms
45,520 KB
testcase_09 AC 563 ms
45,512 KB
testcase_10 AC 560 ms
45,772 KB
testcase_11 AC 678 ms
53,460 KB
testcase_12 AC 678 ms
53,580 KB
testcase_13 AC 1,865 ms
53,468 KB
testcase_14 AC 1,871 ms
53,328 KB
testcase_15 AC 1,848 ms
53,584 KB
testcase_16 AC 1,894 ms
53,444 KB
testcase_17 AC 1,870 ms
53,460 KB
testcase_18 AC 1,839 ms
53,500 KB
testcase_19 AC 1,916 ms
53,584 KB
testcase_20 AC 1,932 ms
53,708 KB
testcase_21 AC 1,975 ms
53,712 KB
testcase_22 AC 1,886 ms
53,652 KB
testcase_23 AC 1,811 ms
53,456 KB
testcase_24 AC 1,857 ms
53,584 KB
testcase_25 AC 1,941 ms
53,568 KB
testcase_26 AC 1,851 ms
53,320 KB
testcase_27 AC 1,866 ms
53,452 KB
testcase_28 AC 1,896 ms
53,488 KB
testcase_29 AC 1,879 ms
53,692 KB
testcase_30 AC 1,900 ms
53,460 KB
testcase_31 AC 1,833 ms
53,456 KB
testcase_32 TLE -
testcase_33 AC 1,926 ms
53,452 KB
testcase_34 AC 1,973 ms
53,708 KB
testcase_35 AC 1,895 ms
53,456 KB
testcase_36 AC 1,752 ms
45,516 KB
testcase_37 AC 1,757 ms
45,644 KB
testcase_38 AC 1,729 ms
45,900 KB
testcase_39 AC 1,705 ms
45,640 KB
testcase_40 AC 1,786 ms
103,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt

import numpy as np

ceil_sq = lambda n: 1 + isqrt(n - 1)

L, R = map(int, input().split())
res = [True] * (R - L + 1)


def primes_np(n):
    is_prime = np.ones(n + 1, dtype=bool)
    is_prime[0] = False
    is_prime[1] = False
    for i in range(2, int(n ** 0.5) + 1):
        if not is_prime[i]:
            continue
        is_prime[i * 2:n + 1:i] = False
    return np.where(is_prime)[0].tolist()


# 10^6以下の素数の2乗で割り切れるかどうかを調べる
for p in primes_np(10**6 + 1):
    p2 = p**2
    for i in range((L // p2) * p2, R + 1, p2):
        if i < L:
            continue
        res[i - L] = False

# 10^6~10^9の素数の2乗で割り切れるかどうかを調べる
for i in range(1, 10**6 + 1):
    if L < i:
        break
    l_sqrt = ceil_sq(L // i)
    r_sqrt = isqrt(R // i)
    for n in range(l_sqrt, r_sqrt + 1):
        if n <= 1:
            continue
        if L <= i * n**2 <= R:
            res[i * n**2 - L] = False
print(res.count(True))
0