結果

問題 No.1653 Squarefree
ユーザー ああいいああいい
提出日時 2022-03-12 11:46:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 757 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 92,612 KB
最終ジャッジ日時 2024-09-16 17:27:21
合計ジャッジ時間 12,702 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 366 ms
91,904 KB
testcase_01 AC 81 ms
73,088 KB
testcase_02 AC 82 ms
73,216 KB
testcase_03 AC 85 ms
74,752 KB
testcase_04 AC 83 ms
72,960 KB
testcase_05 AC 83 ms
72,832 KB
testcase_06 AC 81 ms
72,832 KB
testcase_07 AC 82 ms
72,960 KB
testcase_08 AC 84 ms
73,472 KB
testcase_09 AC 84 ms
72,832 KB
testcase_10 AC 82 ms
73,216 KB
testcase_11 AC 189 ms
91,776 KB
testcase_12 AC 205 ms
91,776 KB
testcase_13 AC 373 ms
92,032 KB
testcase_14 AC 358 ms
92,032 KB
testcase_15 AC 366 ms
91,904 KB
testcase_16 AC 365 ms
91,904 KB
testcase_17 AC 353 ms
92,544 KB
testcase_18 AC 355 ms
92,160 KB
testcase_19 AC 359 ms
91,904 KB
testcase_20 AC 359 ms
92,288 KB
testcase_21 AC 377 ms
92,032 KB
testcase_22 AC 381 ms
91,904 KB
testcase_23 AC 365 ms
92,288 KB
testcase_24 AC 379 ms
92,416 KB
testcase_25 AC 377 ms
92,288 KB
testcase_26 AC 373 ms
91,776 KB
testcase_27 AC 352 ms
91,904 KB
testcase_28 AC 374 ms
92,032 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 378 ms
92,200 KB
testcase_32 AC 389 ms
91,904 KB
testcase_33 WA -
testcase_34 AC 361 ms
91,776 KB
testcase_35 AC 368 ms
91,904 KB
testcase_36 AC 83 ms
72,704 KB
testcase_37 AC 86 ms
72,576 KB
testcase_38 AC 81 ms
72,960 KB
testcase_39 AC 83 ms
73,344 KB
testcase_40 AC 83 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 mid * mid == 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