結果

問題 No.36 素数が嫌い!
ユーザー yakeshibayakeshiba
提出日時 2020-09-14 17:08:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 5,000 ms
コード長 706 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 59,036 KB
最終ジャッジ日時 2024-06-22 00:52:36
合計ジャッジ時間 3,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
57,820 KB
testcase_01 AC 42 ms
57,784 KB
testcase_02 AC 38 ms
53,004 KB
testcase_03 AC 39 ms
52,320 KB
testcase_04 AC 36 ms
52,740 KB
testcase_05 AC 39 ms
57,784 KB
testcase_06 AC 40 ms
58,612 KB
testcase_07 AC 38 ms
58,288 KB
testcase_08 AC 35 ms
52,684 KB
testcase_09 AC 36 ms
52,548 KB
testcase_10 AC 41 ms
57,792 KB
testcase_11 AC 89 ms
57,600 KB
testcase_12 AC 195 ms
58,312 KB
testcase_13 AC 196 ms
57,864 KB
testcase_14 AC 41 ms
58,196 KB
testcase_15 AC 35 ms
53,808 KB
testcase_16 AC 36 ms
52,000 KB
testcase_17 AC 35 ms
52,828 KB
testcase_18 AC 36 ms
52,824 KB
testcase_19 AC 47 ms
58,432 KB
testcase_20 AC 44 ms
58,240 KB
testcase_21 AC 60 ms
58,508 KB
testcase_22 AC 41 ms
57,504 KB
testcase_23 AC 38 ms
57,924 KB
testcase_24 AC 57 ms
57,460 KB
testcase_25 AC 66 ms
57,808 KB
testcase_26 AC 92 ms
59,036 KB
testcase_27 AC 42 ms
57,600 KB
testcase_28 AC 92 ms
58,796 KB
testcase_29 AC 40 ms
58,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorize(n):
    fct = []  # prime factor
    b, e = 2, 0  # base, exponent
    while b * b <= n:
        while n % b == 0:
            n = n // b
            e = e + 1
        if e > 0:
            fct.append((b, e))
        b, e = b + 1, 0
    if n > 1:
        fct.append((n, 1))
    return fct

n = int(input())

if n == 1:
    print('NO')
    exit()

fac = factorize(n)

if len(fac) >= 3:
    print('YES')
elif len(fac) == 2:
    if fac[0][1] >= 2 or fac[1][1] >= 2:
        print('YES')
    else:
        print('NO')
else:
    if fac[0][1] >= 2:
        if fac[0][1] == 2 and fac[0][0]**fac[0][1] == n:
            print('NO')
        else:
            print('YES')
    else:
        print('NO')
0