結果

問題 No.1514 Squared Matching
ユーザー だれだれ
提出日時 2021-05-15 16:12:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 596 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 449,712 KB
最終ジャッジ日時 2024-10-03 04:06:19
合計ジャッジ時間 34,172 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1,928 ms
448,948 KB
testcase_02 AC 38 ms
52,436 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 43 ms
59,136 KB
testcase_06 AC 70 ms
65,664 KB
testcase_07 AC 405 ms
135,376 KB
testcase_08 AC 1,830 ms
434,304 KB
testcase_09 AC 1,591 ms
387,456 KB
testcase_10 AC 1,730 ms
414,976 KB
testcase_11 AC 1,802 ms
429,952 KB
testcase_12 AC 1,835 ms
440,064 KB
testcase_13 AC 1,867 ms
444,800 KB
testcase_14 AC 1,977 ms
447,264 KB
testcase_15 AC 1,912 ms
448,476 KB
testcase_16 AC 1,903 ms
449,356 KB
testcase_17 AC 1,898 ms
449,712 KB
testcase_18 AC 1,890 ms
449,572 KB
testcase_19 AC 1,907 ms
449,408 KB
testcase_20 AC 1,897 ms
449,536 KB
testcase_21 AC 1,903 ms
449,536 KB
testcase_22 AC 419 ms
138,880 KB
testcase_23 AC 1,060 ms
217,856 KB
testcase_24 AC 1,196 ms
292,736 KB
testcase_25 AC 1,563 ms
370,688 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