結果

問題 No.36 素数が嫌い!
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-09-25 15:20:00
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,075 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 00:30:41
合計ジャッジ時間 5,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
6,816 KB
testcase_01 AC 32 ms
6,940 KB
testcase_02 AC 12 ms
6,944 KB
testcase_03 AC 13 ms
6,944 KB
testcase_04 AC 13 ms
6,940 KB
testcase_05 AC 16 ms
6,940 KB
testcase_06 AC 16 ms
6,944 KB
testcase_07 AC 16 ms
6,944 KB
testcase_08 AC 13 ms
6,940 KB
testcase_09 AC 13 ms
6,944 KB
testcase_10 AC 13 ms
6,940 KB
testcase_11 AC 359 ms
6,940 KB
testcase_12 AC 1,074 ms
6,944 KB
testcase_13 AC 1,075 ms
6,944 KB
testcase_14 AC 16 ms
6,944 KB
testcase_15 AC 12 ms
6,944 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 12 ms
6,940 KB
testcase_18 AC 13 ms
6,940 KB
testcase_19 AC 56 ms
6,944 KB
testcase_20 AC 47 ms
6,944 KB
testcase_21 AC 154 ms
6,940 KB
testcase_22 AC 29 ms
6,944 KB
testcase_23 AC 19 ms
6,944 KB
testcase_24 AC 165 ms
6,940 KB
testcase_25 AC 195 ms
6,940 KB
testcase_26 AC 385 ms
6,940 KB
testcase_27 AC 32 ms
6,944 KB
testcase_28 AC 377 ms
6,940 KB
testcase_29 AC 20 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
def factorize(n):
    from collections import defaultdict
    res = defaultdict(int)
    x = n
    d = 2
    while d * d <= n:
        while n % d == 0:
            res[d] += 1
            n /= d
        d += 1
    if n > 1:
        res[n] += 1
    return {k: v for k, v in res.items() if k!=x}

n = int(raw_input())
factored = factorize(n)
arr = map(sum, zip(*factored.items()))[1:]
cnt = arr.pop() if arr else 0
print 'YES' if cnt >= 3 else 'NO'
0