結果

問題 No.1653 Squarefree
ユーザー H3PO4H3PO4
提出日時 2024-05-01 14:45:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,120 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-11-21 19:37:00
合計ジャッジ時間 50,075 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,497 ms
26,568 KB
testcase_01 AC 238 ms
18,432 KB
testcase_02 AC 237 ms
18,560 KB
testcase_03 AC 995 ms
18,688 KB
testcase_04 AC 218 ms
18,560 KB
testcase_05 AC 235 ms
18,432 KB
testcase_06 AC 225 ms
18,560 KB
testcase_07 AC 231 ms
18,688 KB
testcase_08 AC 231 ms
18,432 KB
testcase_09 AC 228 ms
18,432 KB
testcase_10 AC 239 ms
18,432 KB
testcase_11 AC 354 ms
26,368 KB
testcase_12 AC 354 ms
26,520 KB
testcase_13 AC 1,541 ms
26,492 KB
testcase_14 WA -
testcase_15 AC 1,652 ms
26,240 KB
testcase_16 AC 1,529 ms
26,240 KB
testcase_17 AC 1,524 ms
26,496 KB
testcase_18 WA -
testcase_19 AC 1,510 ms
26,368 KB
testcase_20 WA -
testcase_21 AC 1,525 ms
26,368 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,541 ms
26,368 KB
testcase_25 AC 1,508 ms
26,496 KB
testcase_26 WA -
testcase_27 AC 1,505 ms
26,240 KB
testcase_28 AC 1,464 ms
26,496 KB
testcase_29 AC 1,516 ms
26,456 KB
testcase_30 WA -
testcase_31 AC 1,498 ms
26,368 KB
testcase_32 AC 1,444 ms
26,368 KB
testcase_33 WA -
testcase_34 AC 1,497 ms
26,240 KB
testcase_35 AC 1,505 ms
26,496 KB
testcase_36 AC 1,347 ms
18,432 KB
testcase_37 AC 1,375 ms
18,432 KB
testcase_38 AC 1,375 ms
18,432 KB
testcase_39 WA -
testcase_40 AC 1,367 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt

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

# L <= 2x^2 <= R
# 10^6 x^2 <= R

# →あとは10^6までの素因数を発見すればいい

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


def primes(n):
    is_prime = [True] * (n + 1)
    is_prime[0] = False
    is_prime[1] = False
    for i in range(2, int(n**0.5) + 1):
        if not is_prime[i]:
            continue
        for j in range(i * 2, n + 1, i):
            is_prime[j] = False
    return (i for i in range(n + 1) if is_prime[i])


# 10^6以下の素数の2乗で割り切れるかどうかを調べる
for p in primes(10**6 + 1):
    p2 = p**2
    for i in range((L // p2) * 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):
    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 l_sqrt <= 1:
            continue
        if L <= i * n**2 <= R:
            res[i * n**2 - L] = False
print(res.count(True))
0