結果

問題 No.1653 Squarefree
ユーザー tamatotamato
提出日時 2021-08-21 16:38:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 689 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 84,560 KB
最終ジャッジ日時 2024-10-15 07:20:30
合計ジャッジ時間 19,593 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 145 ms
83,624 KB
testcase_02 AC 149 ms
84,040 KB
testcase_03 AC 149 ms
83,936 KB
testcase_04 AC 146 ms
84,212 KB
testcase_05 AC 148 ms
84,236 KB
testcase_06 AC 144 ms
84,112 KB
testcase_07 AC 148 ms
84,156 KB
testcase_08 AC 147 ms
83,872 KB
testcase_09 AC 150 ms
84,216 KB
testcase_10 AC 147 ms
83,832 KB
testcase_11 AC 150 ms
83,804 KB
testcase_12 AC 148 ms
83,960 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 152 ms
83,884 KB
testcase_37 WA -
testcase_38 AC 148 ms
83,936 KB
testcase_39 AC 149 ms
84,064 KB
testcase_40 AC 147 ms
83,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


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

    L, R = map(int, input().split())
    N = 10 ** 6
    cnt = [0] * (N + 1)
    for d in range(N, 1, -1):
        cnt[d] += R // (d**2) - (L - 1) // (d**2)
        for x in range(2, N+1):
            if d*x > N:
                break
            cnt[d] -= cnt[d*x]
    ans = R - (L - 1) - sum(cnt)
    for i in range(L, R+1):
        if i <= N**2:
            continue
        j = sqrt(i)
        for k in range(-2, 3):
            if j+k > 0:
                if (j+k) ** 2 == i:
                    ans -= 1
    print(ans)


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