結果

問題 No.1653 Squarefree
ユーザー ああいいああいい
提出日時 2022-03-12 11:49:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-09-16 17:31:32
合計ジャッジ時間 13,828 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 403 ms
92,160 KB
testcase_01 AC 96 ms
72,960 KB
testcase_02 AC 96 ms
73,216 KB
testcase_03 AC 99 ms
75,008 KB
testcase_04 AC 97 ms
72,704 KB
testcase_05 AC 97 ms
73,600 KB
testcase_06 AC 96 ms
72,704 KB
testcase_07 AC 97 ms
72,832 KB
testcase_08 AC 99 ms
73,344 KB
testcase_09 AC 96 ms
73,088 KB
testcase_10 AC 96 ms
73,088 KB
testcase_11 AC 222 ms
91,968 KB
testcase_12 AC 228 ms
91,648 KB
testcase_13 AC 413 ms
91,776 KB
testcase_14 AC 416 ms
92,032 KB
testcase_15 AC 417 ms
92,124 KB
testcase_16 AC 415 ms
92,544 KB
testcase_17 AC 418 ms
92,032 KB
testcase_18 AC 408 ms
91,776 KB
testcase_19 AC 438 ms
91,776 KB
testcase_20 AC 408 ms
92,032 KB
testcase_21 AC 409 ms
92,032 KB
testcase_22 AC 406 ms
92,032 KB
testcase_23 AC 387 ms
91,776 KB
testcase_24 AC 396 ms
92,160 KB
testcase_25 AC 394 ms
91,904 KB
testcase_26 AC 392 ms
91,776 KB
testcase_27 AC 389 ms
92,160 KB
testcase_28 AC 418 ms
92,160 KB
testcase_29 AC 410 ms
92,224 KB
testcase_30 AC 396 ms
92,392 KB
testcase_31 AC 404 ms
92,020 KB
testcase_32 AC 401 ms
91,904 KB
testcase_33 AC 387 ms
92,544 KB
testcase_34 AC 395 ms
91,964 KB
testcase_35 AC 391 ms
91,904 KB
testcase_36 AC 95 ms
72,960 KB
testcase_37 AC 97 ms
73,600 KB
testcase_38 AC 94 ms
73,088 KB
testcase_39 AC 93 ms
73,088 KB
testcase_40 AC 93 ms
73,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,R = map(int,input().split())

C = 10 ** 6
dat = [0] * C
d = list(range(L,R+1))
for i in range(2,C):
    if dat[i] == 0:
        for j in range(2 * i,C,i):
            dat[j] = 1
        for j in range((L+i-1)//i,R//i+1):
            d[i * j - L] //= i
        now = i * i
        for j in range((L+now-1)//now,R//now+1):
            d[now*j-L] = 0
def check(x):
    if x <= 10 ** 12:return False
    start = 10 ** 6
    end = 10 ** 9 + 1
    while end - start > 1:
        mid = end + start >> 1
        if mid * mid <= x:
            start = mid
        else:
            end = mid
    return start * start == x
ans = 0
for i in d:
    if i == 0:continue
    if i == 1:
        ans += 1
        continue
    if check(i) == False:
        ans += 1
print(ans)
0