結果

問題 No.1514 Squared Matching
ユーザー tamatotamato
提出日時 2021-11-02 10:06:20
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 531 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 467,328 KB
最終ジャッジ日時 2024-10-11 08:17:12
合計ジャッジ時間 42,854 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,983 ms
466,868 KB
testcase_01 AC 3,912 ms
466,968 KB
testcase_02 AC 2,998 ms
466,352 KB
testcase_03 AC 2,978 ms
466,432 KB
testcase_04 AC 2,973 ms
466,688 KB
testcase_05 AC 2,951 ms
466,944 KB
testcase_06 AC 2,979 ms
466,732 KB
testcase_07 AC 3,139 ms
466,988 KB
testcase_08 AC 3,838 ms
466,868 KB
testcase_09 TLE -
testcase_10 AC 3,821 ms
467,072 KB
testcase_11 AC 3,825 ms
467,200 KB
testcase_12 AC 3,864 ms
466,840 KB
testcase_13 AC 3,863 ms
467,040 KB
testcase_14 AC 3,888 ms
466,780 KB
testcase_15 AC 3,840 ms
467,312 KB
testcase_16 AC 3,939 ms
467,008 KB
testcase_17 AC 3,939 ms
467,328 KB
testcase_18 AC 3,918 ms
467,164 KB
testcase_19 AC 3,923 ms
467,072 KB
testcase_20 AC 3,932 ms
467,072 KB
testcase_21 AC 3,919 ms
466,944 KB
testcase_22 AC 3,204 ms
467,328 KB
testcase_23 AC 3,408 ms
467,200 KB
testcase_24 AC 3,572 ms
467,072 KB
testcase_25 AC 3,759 ms
467,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
NN = 5*10**7
eps = 10**-9


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

    P_list = [1] * (NN+1)
    for p in range(2, NN+1):
        if P_list[p] == 1:
            for d in range(1, NN+1):
                if p*d > NN:
                    break
                P_list[p*d] *= p

    N = int(input())
    ans = 0
    for a in range(1, N+1):
        if P_list[a] == a:
            ans += floor(sqrt(N // a)) ** 2
    print(ans)


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