結果

問題 No.1514 Squared Matching
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-22 19:21:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,138 ms / 4,000 ms
コード長 971 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 449,920 KB
最終ジャッジ日時 2024-10-10 17:48:37
合計ジャッジ時間 32,037 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,136 KB
testcase_01 AC 2,138 ms
449,348 KB
testcase_02 AC 43 ms
59,136 KB
testcase_03 AC 44 ms
59,008 KB
testcase_04 AC 43 ms
59,136 KB
testcase_05 AC 48 ms
61,184 KB
testcase_06 AC 74 ms
67,712 KB
testcase_07 AC 384 ms
137,472 KB
testcase_08 AC 1,828 ms
435,456 KB
testcase_09 AC 1,504 ms
388,352 KB
testcase_10 AC 1,725 ms
415,616 KB
testcase_11 AC 1,718 ms
430,592 KB
testcase_12 AC 1,731 ms
440,832 KB
testcase_13 AC 1,762 ms
445,824 KB
testcase_14 AC 1,762 ms
448,000 KB
testcase_15 AC 1,764 ms
448,896 KB
testcase_16 AC 1,767 ms
449,152 KB
testcase_17 AC 1,778 ms
449,664 KB
testcase_18 AC 1,770 ms
449,920 KB
testcase_19 AC 1,765 ms
449,792 KB
testcase_20 AC 1,769 ms
449,664 KB
testcase_21 AC 1,771 ms
449,664 KB
testcase_22 AC 393 ms
141,056 KB
testcase_23 AC 736 ms
219,648 KB
testcase_24 AC 1,083 ms
293,504 KB
testcase_25 AC 1,421 ms
371,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():

    n = int(input())

    table = [i for i in range(n+1)]

    import math

    def sieve(n):
        ass = []
        is_prime = [True]*(n+1)
        is_prime[0] = False
        is_prime[1] = False

        for i in range(2, int(math.sqrt(n))+1):
            if not is_prime[i]:
                continue
            for j in range(i*2, n+1, i):
                is_prime[j] = False
        for i in range(n+1):
            if is_prime[i]:
                ass.append(i)
        return(ass)

    S = sieve(7500)

    for p in S:
        t = p**2
        for i in range(2, 34):
            if i%2 == 1:
                continue
            j = pow(p, i)
            if j > n:
                break
            k = j
            while k <= n:
                table[k] //= t
                k += j
    #print(table)
    ans = 0
    for a in range(1, n+1):
        ans += math.floor(math.sqrt(n/table[a]))
    print(ans)
    
if __name__ == '__main__':
    main()
0