結果

問題 No.1653 Squarefree
ユーザー hir355hir355
提出日時 2021-08-20 23:23:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 786 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 104,628 KB
最終ジャッジ日時 2024-10-14 07:07:43
合計ジャッジ時間 9,836 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 83 ms
75,324 KB
testcase_02 AC 85 ms
74,412 KB
testcase_03 AC 96 ms
81,100 KB
testcase_04 AC 84 ms
75,392 KB
testcase_05 AC 82 ms
74,592 KB
testcase_06 AC 81 ms
74,872 KB
testcase_07 AC 82 ms
75,328 KB
testcase_08 AC 83 ms
75,136 KB
testcase_09 AC 83 ms
74,732 KB
testcase_10 AC 82 ms
74,976 KB
testcase_11 AC 207 ms
101,352 KB
testcase_12 AC 199 ms
101,856 KB
testcase_13 AC 258 ms
104,628 KB
testcase_14 AC 266 ms
104,352 KB
testcase_15 AC 263 ms
104,356 KB
testcase_16 AC 261 ms
104,536 KB
testcase_17 AC 263 ms
104,116 KB
testcase_18 AC 254 ms
104,264 KB
testcase_19 AC 259 ms
104,112 KB
testcase_20 AC 263 ms
104,260 KB
testcase_21 AC 261 ms
104,200 KB
testcase_22 AC 262 ms
104,372 KB
testcase_23 AC 255 ms
104,056 KB
testcase_24 WA -
testcase_25 AC 271 ms
104,568 KB
testcase_26 AC 262 ms
104,156 KB
testcase_27 AC 263 ms
104,096 KB
testcase_28 AC 270 ms
104,240 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 273 ms
104,204 KB
testcase_32 AC 268 ms
104,628 KB
testcase_33 WA -
testcase_34 AC 250 ms
104,244 KB
testcase_35 AC 265 ms
104,256 KB
testcase_36 AC 94 ms
83,648 KB
testcase_37 WA -
testcase_38 AC 94 ms
83,948 KB
testcase_39 AC 94 ms
83,828 KB
testcase_40 AC 95 ms
85,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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]]

l, r = map(int, input().split())
k = list(range(l, r + 1))
d = [1] * (r - l + 1)
pr = primes(1000000)
for p in pr:
    x = 1
    while x * p <= r:
        x *= p
        for i in range(l + x - 1 - (l + x - 1) % x, r + 1, x):
            k[i - l] //= p
    t = p * p
    for i in range(l + t - 1 - (l + t - 1) % t, r + 1, t):
        d[i - l] = 0
ans = r - l + 1
for i in range(r - l + 1):
    if d[i] == 0 or (k[i] > 1 and int((k[i]+1)**.5)==k[i]):
        ans -= 1
print(ans)
0