結果

問題 No.36 素数が嫌い!
ユーザー yuki2006yuki2006
提出日時 2014-10-07 18:27:09
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 205 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-12-30 07:28:29
合計ジャッジ時間 101,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 652 ms
12,416 KB
testcase_02 AC 12 ms
12,288 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 TLE -
testcase_06 WA -
testcase_07 TLE -
testcase_08 AC 11 ms
12,160 KB
testcase_09 AC 12 ms
11,392 KB
testcase_10 AC 1,016 ms
12,288 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 WA -
testcase_14 AC 16 ms
12,160 KB
testcase_15 AC 13 ms
11,520 KB
testcase_16 AC 12 ms
12,160 KB
testcase_17 AC 12 ms
11,392 KB
testcase_18 AC 11 ms
6,144 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 214 ms
6,144 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

_N = int(raw_input())
c = 2
N = _N
count = 0

while N > 1 and c < _N:

    while N % c == 0:
        N /= c
        count += 1
    c += 2 if c > 2 else 1

if count > 1:
    print "YES"
else:
    print "NO"
0