結果

問題 No.36 素数が嫌い!
ユーザー roiti46roiti46
提出日時 2015-02-10 21:22:43
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 169 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 76,588 KB
実行使用メモリ 76,832 KB
最終ジャッジ日時 2024-06-27 00:15:28
合計ジャッジ時間 4,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
76,568 KB
testcase_01 AC 78 ms
76,424 KB
testcase_02 AC 74 ms
75,808 KB
testcase_03 AC 75 ms
75,660 KB
testcase_04 AC 76 ms
75,808 KB
testcase_05 AC 77 ms
76,572 KB
testcase_06 AC 78 ms
76,720 KB
testcase_07 AC 75 ms
76,308 KB
testcase_08 AC 74 ms
75,528 KB
testcase_09 AC 74 ms
75,684 KB
testcase_10 AC 77 ms
76,336 KB
testcase_11 AC 120 ms
76,440 KB
testcase_12 AC 210 ms
76,564 KB
testcase_13 AC 210 ms
76,708 KB
testcase_14 AC 75 ms
76,704 KB
testcase_15 AC 76 ms
75,532 KB
testcase_16 AC 75 ms
75,540 KB
testcase_17 AC 73 ms
75,420 KB
testcase_18 AC 73 ms
75,784 KB
testcase_19 AC 82 ms
76,552 KB
testcase_20 AC 80 ms
76,820 KB
testcase_21 AC 96 ms
76,832 KB
testcase_22 AC 79 ms
76,812 KB
testcase_23 AC 78 ms
76,544 KB
testcase_24 AC 97 ms
76,556 KB
testcase_25 AC 102 ms
76,420 KB
testcase_26 AC 129 ms
76,192 KB
testcase_27 AC 80 ms
76,572 KB
testcase_28 AC 128 ms
76,552 KB
testcase_29 AC 78 ms
76,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
cnt = 0
i = 2
while i * i <= N:
    while N % i == 0:
        cnt += 1
        N /= i
    i += 1
if N > 1: cnt += 1
print "YES" if cnt > 2 else "NO"
0