結果

問題 No.36 素数が嫌い!
ユーザー tookunn_1213tookunn_1213
提出日時 2015-09-06 10:05:08
言語 Python2
(2.7.18)
結果
AC  
実行時間 3,802 ms / 5,000 ms
コード長 202 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 314,112 KB
最終ジャッジ日時 2024-06-27 00:27:48
合計ジャッジ時間 19,802 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 981 ms
148,864 KB
testcase_01 AC 359 ms
245,632 KB
testcase_02 AC 11 ms
6,784 KB
testcase_03 AC 11 ms
6,656 KB
testcase_04 AC 11 ms
6,656 KB
testcase_05 AC 18 ms
7,296 KB
testcase_06 AC 21 ms
7,296 KB
testcase_07 AC 23 ms
7,552 KB
testcase_08 AC 11 ms
6,784 KB
testcase_09 AC 11 ms
7,040 KB
testcase_10 AC 13 ms
7,168 KB
testcase_11 AC 1,247 ms
106,496 KB
testcase_12 AC 3,796 ms
314,112 KB
testcase_13 AC 3,802 ms
313,088 KB
testcase_14 AC 256 ms
197,196 KB
testcase_15 AC 11 ms
6,656 KB
testcase_16 AC 11 ms
6,656 KB
testcase_17 AC 11 ms
6,528 KB
testcase_18 AC 11 ms
6,656 KB
testcase_19 AC 294 ms
126,336 KB
testcase_20 AC 488 ms
313,204 KB
testcase_21 AC 750 ms
241,024 KB
testcase_22 AC 354 ms
248,404 KB
testcase_23 AC 207 ms
151,808 KB
testcase_24 AC 711 ms
168,148 KB
testcase_25 AC 797 ms
165,504 KB
testcase_26 AC 1,435 ms
192,896 KB
testcase_27 AC 381 ms
269,736 KB
testcase_28 AC 1,411 ms
189,040 KB
testcase_29 AC 394 ms
303,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = long(raw_input())
L =long(math.ceil(math.sqrt(N)))
c = 0
for i in range(2,L + 1):
	if i * i > N:break
	while N % i == 0:
		N /= i
		c += 1
if N > 1:c += 1
print 'YES' if c >= 3 else 'NO'
0