結果

問題 No.36 素数が嫌い!
ユーザー c-yanc-yan
提出日時 2021-01-09 00:26:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 497 ms / 5,000 ms
コード長 583 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-16 19:55:51
合計ジャッジ時間 6,748 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
10,752 KB
testcase_01 AC 233 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 181 ms
10,752 KB
testcase_12 AC 497 ms
10,624 KB
testcase_13 AC 487 ms
10,880 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 25 ms
10,624 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 25 ms
10,624 KB
testcase_19 AC 148 ms
10,624 KB
testcase_20 AC 414 ms
10,624 KB
testcase_21 AC 273 ms
10,624 KB
testcase_22 AC 381 ms
10,624 KB
testcase_23 AC 243 ms
10,752 KB
testcase_24 AC 106 ms
10,624 KB
testcase_25 AC 259 ms
10,624 KB
testcase_26 AC 296 ms
10,752 KB
testcase_27 AC 429 ms
10,624 KB
testcase_28 AC 304 ms
10,880 KB
testcase_29 AC 475 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factorize(n):
    result = []
    if n % 2 == 0:
        t = 0
        while n % 2 == 0:
            n //= 2
            t += 1
        result.append((2, t))
    for i in range(3, int(n ** 0.5) + 1, 2):
        if n % i != 0:
            continue
        t = 0
        while n % i == 0:
            n //= i
            t += 1
        result.append((i, t))
        if n == 1:
            break
    if n != 1:
        result.append((n, 1))
    return result


N = int(input())
t = 0
for p, e in prime_factorize(N):
    t += e
if t > 2:
    print('YES')
else:
    print('NO')
0