結果

問題 No.1514 Squared Matching
ユーザー だれだれ
提出日時 2021-05-15 16:14:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,672 ms / 4,000 ms
コード長 597 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 450,800 KB
最終ジャッジ日時 2024-10-03 04:08:09
合計ジャッジ時間 28,373 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,240 KB
testcase_01 AC 1,672 ms
449,064 KB
testcase_02 AC 32 ms
52,328 KB
testcase_03 AC 31 ms
54,056 KB
testcase_04 AC 31 ms
53,676 KB
testcase_05 AC 37 ms
59,976 KB
testcase_06 AC 59 ms
66,628 KB
testcase_07 AC 342 ms
136,720 KB
testcase_08 AC 1,558 ms
435,024 KB
testcase_09 AC 1,370 ms
388,564 KB
testcase_10 AC 1,462 ms
415,984 KB
testcase_11 AC 1,523 ms
430,312 KB
testcase_12 AC 1,593 ms
441,452 KB
testcase_13 AC 1,574 ms
447,172 KB
testcase_14 AC 1,593 ms
448,320 KB
testcase_15 AC 1,615 ms
448,456 KB
testcase_16 AC 1,609 ms
449,636 KB
testcase_17 AC 1,602 ms
449,860 KB
testcase_18 AC 1,607 ms
449,176 KB
testcase_19 AC 1,607 ms
450,800 KB
testcase_20 AC 1,602 ms
449,924 KB
testcase_21 AC 1,614 ms
449,156 KB
testcase_22 AC 347 ms
141,116 KB
testcase_23 AC 668 ms
217,912 KB
testcase_24 AC 974 ms
293,476 KB
testcase_25 AC 1,298 ms
371,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor, sqrt

def main(n):
    ans = 0
    prime = [True] * (7500)
    x = [i for i in range(n + 1)]
    i = 2
    while i * i <= n:
        if prime[i]:
            w = i * i
            j = w

            while j * j <= n:
                prime[j] = False
                j += i

            j = w
            while j <= n:
                k = j
                while k <= n:
                    x[k] //= w
                    k += j
                j *= w
        i += 1
    for i in range(1, n + 1):
        ans += floor(sqrt(n / x[i]))
    print(ans)

n = int(input())
main(n)
0