結果

問題 No.36 素数が嫌い!
ユーザー TawaraTawara
提出日時 2015-12-03 15:22:18
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 224 ms / 5,000 ms
コード長 164 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-06-27 00:34:05
合計ジャッジ時間 5,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
76,416 KB
testcase_01 AC 194 ms
76,672 KB
testcase_02 AC 75 ms
75,264 KB
testcase_03 AC 80 ms
75,584 KB
testcase_04 AC 77 ms
75,520 KB
testcase_05 AC 77 ms
76,672 KB
testcase_06 AC 74 ms
76,456 KB
testcase_07 AC 74 ms
76,160 KB
testcase_08 AC 74 ms
76,032 KB
testcase_09 AC 74 ms
76,160 KB
testcase_10 AC 74 ms
76,160 KB
testcase_11 AC 113 ms
76,416 KB
testcase_12 AC 197 ms
76,416 KB
testcase_13 AC 198 ms
76,448 KB
testcase_14 AC 172 ms
76,544 KB
testcase_15 AC 75 ms
75,648 KB
testcase_16 AC 73 ms
75,432 KB
testcase_17 AC 73 ms
75,264 KB
testcase_18 AC 75 ms
76,288 KB
testcase_19 AC 132 ms
76,288 KB
testcase_20 AC 224 ms
76,672 KB
testcase_21 AC 188 ms
76,300 KB
testcase_22 AC 194 ms
76,160 KB
testcase_23 AC 146 ms
76,672 KB
testcase_24 AC 159 ms
76,672 KB
testcase_25 AC 156 ms
76,544 KB
testcase_26 AC 168 ms
76,184 KB
testcase_27 AC 211 ms
76,588 KB
testcase_28 AC 165 ms
76,416 KB
testcase_29 AC 223 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt,ceil
N = input()
cnt = 0
for i in xrange(2,int(ceil(sqrt(N)))+1):
	while N%i==0: cnt+=1; N/=i
if N!=1: cnt+=1
print "NO" if cnt < 3 else "YES"
0