結果

問題 No.36 素数が嫌い!
ユーザー convexineqconvexineq
提出日時 2020-11-25 06:45:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 741 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 59,324 KB
最終ジャッジ日時 2024-07-23 19:12:17
合計ジャッジ時間 2,639 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
57,648 KB
testcase_01 AC 43 ms
57,796 KB
testcase_02 AC 39 ms
52,200 KB
testcase_03 AC 38 ms
52,132 KB
testcase_04 AC 39 ms
52,860 KB
testcase_05 AC 42 ms
57,392 KB
testcase_06 AC 42 ms
58,800 KB
testcase_07 AC 42 ms
59,324 KB
testcase_08 AC 38 ms
52,876 KB
testcase_09 AC 38 ms
53,560 KB
testcase_10 AC 40 ms
57,648 KB
testcase_11 AC 65 ms
58,188 KB
testcase_12 AC 114 ms
59,152 KB
testcase_13 AC 114 ms
58,056 KB
testcase_14 AC 42 ms
58,172 KB
testcase_15 AC 38 ms
52,132 KB
testcase_16 AC 39 ms
52,840 KB
testcase_17 AC 39 ms
53,012 KB
testcase_18 AC 39 ms
53,140 KB
testcase_19 AC 45 ms
58,236 KB
testcase_20 AC 44 ms
58,724 KB
testcase_21 AC 51 ms
59,156 KB
testcase_22 AC 42 ms
57,848 KB
testcase_23 AC 42 ms
57,796 KB
testcase_24 AC 53 ms
57,572 KB
testcase_25 AC 55 ms
58,964 KB
testcase_26 AC 66 ms
57,380 KB
testcase_27 AC 42 ms
57,548 KB
testcase_28 AC 67 ms
58,492 KB
testcase_29 AC 42 ms
58,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factorize(N): #素因数分解
    exponent = 0
    while N%2 == 0:
        exponent += 1
        N //= 2
    if exponent: factorization = [[2,exponent]]
    else: factorization = []
    i=1
    while i*i <=N:
        i += 2
        if N%i: continue
        exponent = 0
        while N%i == 0:
            exponent += 1
            N //= i
        factorization.append([i,exponent])
    if N!= 1: factorization.append([N,1])
    assert N != 0, "zero"
    return factorization

# coding: utf-8
# Your code here!
import sys
readline = sys.stdin.readline
read = sys.stdin.read

#a,b,c = map(int,readline().split())
n = int(input())
lst = prime_factorize(n)
ok = 0
if sum(e for p,e in lst) >= 3:
    print("YES")
else:
    print("NO")
0