結果

問題 No.1653 Squarefree
ユーザー tamatotamato
提出日時 2021-08-21 17:33:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 728 ms / 2,000 ms
コード長 1,255 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 85,020 KB
最終ジャッジ日時 2024-10-15 08:12:15
合計ジャッジ時間 18,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 551 ms
84,396 KB
testcase_01 AC 69 ms
58,752 KB
testcase_02 AC 69 ms
58,752 KB
testcase_03 AC 102 ms
75,904 KB
testcase_04 AC 70 ms
59,008 KB
testcase_05 AC 71 ms
59,008 KB
testcase_06 AC 71 ms
59,392 KB
testcase_07 AC 70 ms
59,264 KB
testcase_08 AC 70 ms
58,880 KB
testcase_09 AC 69 ms
58,752 KB
testcase_10 AC 70 ms
58,496 KB
testcase_11 AC 452 ms
83,772 KB
testcase_12 AC 477 ms
84,224 KB
testcase_13 AC 624 ms
84,480 KB
testcase_14 AC 576 ms
84,480 KB
testcase_15 AC 635 ms
84,272 KB
testcase_16 AC 599 ms
84,704 KB
testcase_17 AC 576 ms
84,316 KB
testcase_18 AC 550 ms
84,864 KB
testcase_19 AC 589 ms
84,440 KB
testcase_20 AC 595 ms
84,480 KB
testcase_21 AC 610 ms
84,352 KB
testcase_22 AC 612 ms
84,608 KB
testcase_23 AC 560 ms
84,352 KB
testcase_24 AC 566 ms
84,480 KB
testcase_25 AC 624 ms
84,608 KB
testcase_26 AC 584 ms
84,224 KB
testcase_27 AC 585 ms
84,420 KB
testcase_28 AC 577 ms
84,480 KB
testcase_29 AC 603 ms
84,224 KB
testcase_30 AC 599 ms
84,096 KB
testcase_31 AC 582 ms
84,444 KB
testcase_32 AC 575 ms
84,352 KB
testcase_33 AC 686 ms
84,736 KB
testcase_34 AC 673 ms
85,020 KB
testcase_35 AC 728 ms
84,252 KB
testcase_36 AC 71 ms
58,880 KB
testcase_37 AC 70 ms
59,124 KB
testcase_38 AC 70 ms
58,880 KB
testcase_39 AC 71 ms
59,392 KB
testcase_40 AC 70 ms
59,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from math import sqrt
    input = sys.stdin.readline

    N = 10 ** 6
    L, R = map(int, input().split())
    A = list(range(L, R+1))
    for d in range(2, N+1):
        xl = (L - 1) // d + 1
        xr = R // d
        for x in range(xl, xr + 1):
            m = A[d * x - L]
            if m != -1:
                if m % (d**2) == 0:
                    A[d*x - L] = -1
                else:
                    if m % d == 0:
                        A[d * x - L] //= d
    ans = 0
    for m_ in range(L, R+1):
        if A[m_ - L] == -1:
            continue
        ans += 1
        m = A[m_ - L]
        if m != 1:
            mm = int(sqrt(m))
            for j in range(-2, 3):
                if mm + j > 0:
                    if (mm + j) ** 2 == m:
                        if mm + j > N:
                            ans -= 1
    print(ans)

    """
    # guchoku
    cnt = 0
    ok = [0] * (R - L + 1)
    for i in range(L, R+1):
        flg = 1
        for d in range(2, 101):
            if i % (d**2) == 0:
                flg = 0
                break
        cnt += flg
        if flg:
            ok[i - L] = 1
    print(cnt)
    """


if __name__ == '__main__':
    main()
0