結果

問題 No.1514 Squared Matching
ユーザー rlangevinrlangevin
提出日時 2023-08-31 12:17:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,194 ms / 4,000 ms
コード長 598 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 452,104 KB
最終ジャッジ日時 2025-01-03 04:32:22
合計ジャッジ時間 34,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 1,982 ms
451,892 KB
testcase_02 AC 39 ms
52,340 KB
testcase_03 AC 38 ms
52,252 KB
testcase_04 AC 38 ms
52,128 KB
testcase_05 AC 47 ms
60,588 KB
testcase_06 AC 75 ms
67,380 KB
testcase_07 AC 409 ms
137,508 KB
testcase_08 AC 1,909 ms
437,884 KB
testcase_09 AC 1,655 ms
390,784 KB
testcase_10 AC 1,783 ms
417,756 KB
testcase_11 AC 1,883 ms
433,040 KB
testcase_12 AC 1,929 ms
442,696 KB
testcase_13 AC 1,928 ms
448,176 KB
testcase_14 AC 1,927 ms
450,092 KB
testcase_15 AC 1,930 ms
451,480 KB
testcase_16 AC 1,956 ms
451,588 KB
testcase_17 AC 1,954 ms
451,992 KB
testcase_18 AC 1,964 ms
451,568 KB
testcase_19 AC 1,975 ms
451,856 KB
testcase_20 AC 2,194 ms
452,104 KB
testcase_21 AC 1,974 ms
451,608 KB
testcase_22 AC 418 ms
140,964 KB
testcase_23 AC 823 ms
219,292 KB
testcase_24 AC 1,212 ms
295,404 KB
testcase_25 AC 1,570 ms
374,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt, ceil, floor


def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return S

N = int(input())

P = Sieve(int(sqrt(N)) + 10)
L = list(range(N + 1))
for p in P:
    now = p * p
    while now <= N:
        for i in range(now, N + 1, now):
            L[i] //= p * p
        now *= p * p

ans = 0
for i in range(1, N + 1):
    ans += floor(sqrt(N//L[i]))

print(ans)
0