結果

問題 No.2750 Number of Prime Factors
ユーザー hato336hato336
提出日時 2024-05-10 21:25:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,864 KB
実行使用メモリ 53,656 KB
最終ジャッジ日時 2024-12-20 04:16:19
合計ジャッジ時間 1,859 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,896 KB
testcase_01 AC 39 ms
52,404 KB
testcase_02 AC 38 ms
53,372 KB
testcase_03 AC 38 ms
53,284 KB
testcase_04 AC 40 ms
52,276 KB
testcase_05 AC 39 ms
52,140 KB
testcase_06 AC 40 ms
52,152 KB
testcase_07 AC 39 ms
53,284 KB
testcase_08 AC 38 ms
53,208 KB
testcase_09 AC 40 ms
52,612 KB
testcase_10 AC 40 ms
52,752 KB
testcase_11 AC 40 ms
52,376 KB
testcase_12 AC 39 ms
52,528 KB
testcase_13 AC 38 ms
53,152 KB
testcase_14 AC 39 ms
53,656 KB
testcase_15 AC 38 ms
53,160 KB
testcase_16 AC 40 ms
52,664 KB
testcase_17 AC 39 ms
53,576 KB
testcase_18 AC 39 ms
52,256 KB
testcase_19 AC 39 ms
52,632 KB
testcase_20 AC 38 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def MillerRabin_64bit(x):
    if x <= 1:
        return False
    if x == 2:
        return True
    if x % 2 == 0:
        return False
    if x < 1 << 30:
        test = [2, 7, 61]
    else:
        test = [2,325,9375,28178,450775,9780504,1795265022]
    s = 0
    d = x - 1
    while d & 1 == 0:
        s += 1
        d >>= 1
    for i in test:
        if x <= i:
            return True
        y = pow(i,d,x)
        if y == 1 or y == x - 1:
            continue
        c = 0
        for j in range(s-1):
            y = y * y % x
            if y == x - 1:
                c = 1
                break
        if not c:
            return False
    return True
n = int(input())
x = 2
ans = 1
for i in range(3,10000):
    if x > n:
        print(ans-1)
        break
    if MillerRabin_64bit(i) == False:
        continue
    ans += 1
    x *= i
0