結果

問題 No.36 素数が嫌い!
ユーザー tabataba
提出日時 2016-05-08 05:00:42
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-10-05 10:34:33
合計ジャッジ時間 7,164 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 338 ms
6,784 KB
testcase_02 AC 10 ms
6,272 KB
testcase_03 AC 10 ms
6,656 KB
testcase_04 AC 9 ms
6,272 KB
testcase_05 AC 12 ms
6,528 KB
testcase_06 AC 11 ms
6,528 KB
testcase_07 AC 11 ms
6,528 KB
testcase_08 AC 9 ms
6,656 KB
testcase_09 AC 9 ms
6,272 KB
testcase_10 WA -
testcase_11 AC 203 ms
6,400 KB
testcase_12 AC 592 ms
6,656 KB
testcase_13 AC 593 ms
6,528 KB
testcase_14 AC 12 ms
6,656 KB
testcase_15 WA -
testcase_16 AC 9 ms
6,656 KB
testcase_17 AC 11 ms
6,400 KB
testcase_18 AC 10 ms
6,400 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 115 ms
6,528 KB
testcase_25 WA -
testcase_26 AC 370 ms
6,656 KB
testcase_27 AC 513 ms
6,528 KB
testcase_28 AC 356 ms
6,528 KB
testcase_29 AC 578 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
c=0
while n&1==0:
	n>>=1
	c+=1
for i in xrange(3,int(n**0.5)+2,2):
	while n%i==0:
		n/=i
		c+=1
	if c>2:
		break
print["NO","YES"][c>2]
0