結果

問題 No.1514 Squared Matching
ユーザー rlangevinrlangevin
提出日時 2023-08-31 12:17:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,906 ms / 4,000 ms
コード長 598 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 452,224 KB
最終ジャッジ日時 2024-06-11 01:21:59
合計ジャッジ時間 33,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 1,906 ms
452,224 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 AC 34 ms
52,480 KB
testcase_05 AC 41 ms
60,032 KB
testcase_06 AC 67 ms
66,944 KB
testcase_07 AC 366 ms
137,440 KB
testcase_08 AC 1,722 ms
437,600 KB
testcase_09 AC 1,499 ms
390,452 KB
testcase_10 AC 1,623 ms
418,048 KB
testcase_11 AC 1,778 ms
432,500 KB
testcase_12 AC 1,761 ms
443,200 KB
testcase_13 AC 1,777 ms
448,036 KB
testcase_14 AC 1,783 ms
450,176 KB
testcase_15 AC 1,794 ms
451,276 KB
testcase_16 AC 1,790 ms
451,408 KB
testcase_17 AC 1,891 ms
452,096 KB
testcase_18 AC 1,804 ms
451,840 KB
testcase_19 AC 1,806 ms
452,096 KB
testcase_20 AC 1,805 ms
452,112 KB
testcase_21 AC 1,817 ms
451,996 KB
testcase_22 AC 433 ms
140,800 KB
testcase_23 AC 833 ms
218,880 KB
testcase_24 AC 1,093 ms
295,424 KB
testcase_25 AC 1,464 ms
374,016 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