結果

問題 No.36 素数が嫌い!
ユーザー TawaraTawara
提出日時 2015-12-03 15:32:26
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,984 ms / 5,000 ms
コード長 94 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-06-27 00:35:28
合計ジャッジ時間 25,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 924 ms
6,272 KB
testcase_01 AC 1,533 ms
6,400 KB
testcase_02 AC 11 ms
6,400 KB
testcase_03 AC 11 ms
6,528 KB
testcase_04 AC 11 ms
6,528 KB
testcase_05 AC 17 ms
6,400 KB
testcase_06 AC 17 ms
6,528 KB
testcase_07 AC 17 ms
6,272 KB
testcase_08 AC 12 ms
6,272 KB
testcase_09 AC 16 ms
6,528 KB
testcase_10 AC 15 ms
6,400 KB
testcase_11 AC 650 ms
6,400 KB
testcase_12 AC 1,984 ms
6,400 KB
testcase_13 AC 1,974 ms
6,400 KB
testcase_14 AC 1,220 ms
6,400 KB
testcase_15 AC 11 ms
6,400 KB
testcase_16 AC 11 ms
6,400 KB
testcase_17 AC 11 ms
6,272 KB
testcase_18 AC 12 ms
6,400 KB
testcase_19 AC 780 ms
6,400 KB
testcase_20 AC 1,975 ms
6,400 KB
testcase_21 AC 1,516 ms
6,528 KB
testcase_22 AC 1,557 ms
6,400 KB
testcase_23 AC 943 ms
6,400 KB
testcase_24 AC 1,041 ms
6,400 KB
testcase_25 AC 1,032 ms
6,400 KB
testcase_26 AC 1,210 ms
6,272 KB
testcase_27 AC 1,689 ms
6,528 KB
testcase_28 AC 1,173 ms
6,400 KB
testcase_29 AC 1,910 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=N=input();c=0;i=2
while i*i<=M:
	while N%i==0:c+=1;N/=i
	i+=1
print ["YES","NO"][c+(N!=1)<3]
0