結果

問題 No.1514 Squared Matching
ユーザー tamatotamato
提出日時 2021-05-21 22:20:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,937 ms / 4,000 ms
コード長 531 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 467,452 KB
最終ジャッジ日時 2024-10-10 09:09:18
合計ジャッジ時間 95,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,927 ms
466,816 KB
testcase_01 AC 3,903 ms
466,620 KB
testcase_02 AC 2,870 ms
466,776 KB
testcase_03 AC 2,868 ms
466,688 KB
testcase_04 AC 2,951 ms
466,176 KB
testcase_05 AC 2,943 ms
466,728 KB
testcase_06 AC 2,953 ms
466,908 KB
testcase_07 AC 3,135 ms
466,732 KB
testcase_08 AC 3,852 ms
466,720 KB
testcase_09 AC 3,689 ms
467,004 KB
testcase_10 AC 3,831 ms
467,168 KB
testcase_11 AC 3,805 ms
466,852 KB
testcase_12 AC 3,784 ms
467,124 KB
testcase_13 AC 3,781 ms
467,452 KB
testcase_14 AC 3,843 ms
466,740 KB
testcase_15 AC 3,862 ms
467,068 KB
testcase_16 AC 3,937 ms
467,300 KB
testcase_17 AC 3,824 ms
467,168 KB
testcase_18 AC 3,807 ms
466,728 KB
testcase_19 AC 3,829 ms
467,140 KB
testcase_20 AC 3,812 ms
467,316 KB
testcase_21 AC 3,789 ms
467,292 KB
testcase_22 AC 3,075 ms
466,588 KB
testcase_23 AC 3,364 ms
467,060 KB
testcase_24 AC 3,470 ms
466,736 KB
testcase_25 AC 3,636 ms
467,148 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