結果

問題 No.36 素数が嫌い!
ユーザー kbyskbys
提出日時 2020-09-14 16:55:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-22 00:52:09
合計ジャッジ時間 8,601 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 411 ms
10,752 KB
testcase_01 AC 55 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 571 ms
10,752 KB
testcase_12 AC 1,691 ms
10,880 KB
testcase_13 WA -
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 93 ms
10,752 KB
testcase_20 AC 80 ms
10,752 KB
testcase_21 AC 248 ms
10,752 KB
testcase_22 AC 51 ms
10,880 KB
testcase_23 AC 38 ms
10,752 KB
testcase_24 AC 268 ms
10,880 KB
testcase_25 AC 313 ms
10,752 KB
testcase_26 AC 615 ms
10,752 KB
testcase_27 AC 56 ms
10,752 KB
testcase_28 AC 613 ms
10,752 KB
testcase_29 AC 40 ms
10,752 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:
        print('YES')
    else:
        print('NO')
0