結果

問題 No.36 素数が嫌い!
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-09-25 15:20:16
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 231 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-06-27 00:31:00
合計ジャッジ時間 4,705 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
78,336 KB
testcase_01 AC 86 ms
78,720 KB
testcase_02 AC 84 ms
77,476 KB
testcase_03 AC 83 ms
77,616 KB
testcase_04 AC 83 ms
77,568 KB
testcase_05 AC 87 ms
77,952 KB
testcase_06 AC 88 ms
78,088 KB
testcase_07 AC 86 ms
77,972 KB
testcase_08 AC 87 ms
77,696 KB
testcase_09 AC 85 ms
77,440 KB
testcase_10 AC 88 ms
78,080 KB
testcase_11 AC 134 ms
78,008 KB
testcase_12 AC 231 ms
77,952 KB
testcase_13 AC 229 ms
77,952 KB
testcase_14 AC 85 ms
78,208 KB
testcase_15 AC 82 ms
77,568 KB
testcase_16 AC 83 ms
77,312 KB
testcase_17 AC 83 ms
77,596 KB
testcase_18 AC 81 ms
77,716 KB
testcase_19 AC 90 ms
78,464 KB
testcase_20 AC 90 ms
78,336 KB
testcase_21 AC 102 ms
78,336 KB
testcase_22 AC 89 ms
77,952 KB
testcase_23 AC 85 ms
77,952 KB
testcase_24 AC 107 ms
78,080 KB
testcase_25 AC 109 ms
78,336 KB
testcase_26 AC 136 ms
78,108 KB
testcase_27 AC 87 ms
77,952 KB
testcase_28 AC 134 ms
78,452 KB
testcase_29 AC 86 ms
77,968 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