結果

問題 No.36 素数が嫌い!
ユーザー 37zigen37zigen
提出日時 2016-05-05 16:45:02
言語 PHP
(8.3.4)
結果
RE  
実行時間 -
コード長 230 bytes
コンパイル時間 2,966 ms
コンパイル使用メモリ 31,632 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-10-05 09:46:04
合計ジャッジ時間 4,385 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 34 ms
32,144 KB
testcase_03 AC 35 ms
32,272 KB
testcase_04 RE -
testcase_05 AC 36 ms
32,272 KB
testcase_06 AC 37 ms
32,272 KB
testcase_07 AC 37 ms
32,088 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 338 ms
32,148 KB
testcase_12 AC 976 ms
32,144 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 36 ms
32,144 KB
testcase_17 AC 37 ms
32,140 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 109 ms
32,272 KB
testcase_27 AC 40 ms
32,276 KB
testcase_28 AC 109 ms
32,272 KB
testcase_29 AC 38 ms
32,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n=trim(fgets(STDIN));
// $n=6;
$f_count=0;
for($i=2;$i*$i<=$n;$i++){
	while($n%$i==0){
		$f_count++;
		$n/=$i;
		if($f_count>1)break 2;
	}
}
if($f_count>1&&!(f_count==2&&$n==1))echo "YES".PHP_EOL;
else echo "NO".PHP_EOL;
?>
0