結果

問題 No.36 素数が嫌い!
ユーザー pluto77pluto77
提出日時 2016-03-28 09:12:14
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 236 ms / 5,000 ms
コード長 197 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 76,600 KB
実行使用メモリ 76,860 KB
最終ジャッジ日時 2024-06-27 00:44:12
合計ジャッジ時間 5,418 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
76,456 KB
testcase_01 AC 198 ms
76,448 KB
testcase_02 AC 75 ms
75,656 KB
testcase_03 AC 78 ms
75,432 KB
testcase_04 AC 85 ms
75,536 KB
testcase_05 AC 78 ms
76,452 KB
testcase_06 AC 83 ms
76,724 KB
testcase_07 AC 79 ms
76,312 KB
testcase_08 AC 80 ms
76,220 KB
testcase_09 AC 86 ms
76,192 KB
testcase_10 AC 81 ms
76,316 KB
testcase_11 AC 121 ms
76,224 KB
testcase_12 AC 203 ms
76,700 KB
testcase_13 AC 205 ms
76,284 KB
testcase_14 AC 176 ms
76,808 KB
testcase_15 AC 79 ms
75,808 KB
testcase_16 AC 77 ms
75,684 KB
testcase_17 AC 75 ms
75,384 KB
testcase_18 AC 75 ms
76,812 KB
testcase_19 AC 137 ms
76,304 KB
testcase_20 AC 236 ms
76,200 KB
testcase_21 AC 197 ms
76,344 KB
testcase_22 AC 204 ms
76,176 KB
testcase_23 AC 151 ms
76,192 KB
testcase_24 AC 158 ms
76,528 KB
testcase_25 AC 155 ms
76,728 KB
testcase_26 AC 171 ms
76,168 KB
testcase_27 AC 210 ms
76,312 KB
testcase_28 AC 170 ms
76,860 KB
testcase_29 AC 229 ms
76,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
##yuki_36
import math

n=int(raw_input())

temp=0
for i in xrange(2,int(math.sqrt(n))+1):
 while n%i==0:
  temp+=1
  n/=i
if n>1:
 temp+=1
if temp>=3:
 print "YES"
else:
 print "NO"
0