結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,001 ms
148,904 KB
testcase_01 AC 375 ms
245,780 KB
testcase_02 AC 12 ms
6,940 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 AC 12 ms
6,944 KB
testcase_05 AC 20 ms
7,424 KB
testcase_06 AC 24 ms
7,296 KB
testcase_07 AC 25 ms
7,296 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 12 ms
7,168 KB
testcase_10 AC 14 ms
7,296 KB
testcase_11 AC 1,297 ms
106,536 KB
testcase_12 AC 3,932 ms
313,984 KB
testcase_13 AC 3,906 ms
313,100 KB
testcase_14 AC 255 ms
197,200 KB
testcase_15 AC 12 ms
6,944 KB
testcase_16 AC 12 ms
6,944 KB
testcase_17 AC 11 ms
6,944 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 309 ms
126,036 KB
testcase_20 AC 510 ms
313,060 KB
testcase_21 AC 763 ms
241,144 KB
testcase_22 AC 363 ms
248,448 KB
testcase_23 AC 209 ms
151,736 KB
testcase_24 AC 721 ms
168,076 KB
testcase_25 AC 814 ms
165,352 KB
testcase_26 AC 1,473 ms
192,880 KB
testcase_27 AC 403 ms
269,744 KB
testcase_28 AC 1,451 ms
189,244 KB
testcase_29 AC 409 ms
303,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = long(raw_input())
L =long(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