結果

問題 No.1514 Squared Matching
ユーザー だれだれ
提出日時 2021-04-25 17:18:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,605 ms / 4,000 ms
コード長 777 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 450,528 KB
最終ジャッジ日時 2024-07-17 21:37:22
合計ジャッジ時間 26,330 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,444 KB
testcase_01 AC 1,605 ms
449,560 KB
testcase_02 AC 37 ms
58,144 KB
testcase_03 AC 36 ms
58,824 KB
testcase_04 AC 36 ms
57,584 KB
testcase_05 AC 39 ms
61,400 KB
testcase_06 AC 58 ms
66,992 KB
testcase_07 AC 304 ms
137,392 KB
testcase_08 AC 1,520 ms
435,640 KB
testcase_09 AC 1,241 ms
389,120 KB
testcase_10 AC 1,402 ms
415,528 KB
testcase_11 AC 1,399 ms
430,136 KB
testcase_12 AC 1,426 ms
440,320 KB
testcase_13 AC 1,442 ms
446,676 KB
testcase_14 AC 1,471 ms
449,344 KB
testcase_15 AC 1,466 ms
448,644 KB
testcase_16 AC 1,452 ms
449,976 KB
testcase_17 AC 1,448 ms
449,444 KB
testcase_18 AC 1,447 ms
450,356 KB
testcase_19 AC 1,468 ms
450,376 KB
testcase_20 AC 1,465 ms
450,528 KB
testcase_21 AC 1,447 ms
449,832 KB
testcase_22 AC 315 ms
139,852 KB
testcase_23 AC 610 ms
218,632 KB
testcase_24 AC 899 ms
294,624 KB
testcase_25 AC 1,165 ms
371,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor, sqrt
def main(n):
    ans = 0
    prime = [True] * (7500)
    x = [i for i in range(n + 1)]
    for i in range(4, 7500, 2):
        prime[i] = False
    j = 4
    while j <= n:
        k = j
        while k <= n:
            x[k] >>= 2
            k += j
        j *= 4
    i = 3
    while i * i < n:
        if prime[i]:
            w = i * i
            j = w

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

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

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