結果

問題 No.36 素数が嫌い!
ユーザー yuki2006yuki2006
提出日時 2015-07-23 12:43:26
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 4,658 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 32,528 KB
最終ジャッジ日時 2024-07-08 12:21:16
合計ジャッジ時間 20,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 766 ms
31,236 KB
testcase_01 AC 97 ms
31,404 KB
testcase_02 AC 41 ms
31,436 KB
testcase_03 AC 42 ms
31,184 KB
testcase_04 AC 41 ms
31,048 KB
testcase_05 AC 48 ms
31,104 KB
testcase_06 AC 52 ms
31,148 KB
testcase_07 AC 52 ms
31,164 KB
testcase_08 AC 41 ms
31,528 KB
testcase_09 AC 41 ms
31,112 KB
testcase_10 AC 43 ms
30,992 KB
testcase_11 AC 1,050 ms
31,112 KB
testcase_12 AC 3,139 ms
31,276 KB
testcase_13 AC 3,133 ms
31,056 KB
testcase_14 AC 52 ms
31,464 KB
testcase_15 WA -
testcase_16 AC 41 ms
31,568 KB
testcase_17 AC 41 ms
31,168 KB
testcase_18 AC 42 ms
31,336 KB
testcase_19 AC 166 ms
31,436 KB
testcase_20 AC 140 ms
31,220 KB
testcase_21 AC 450 ms
31,212 KB
testcase_22 AC 90 ms
31,136 KB
testcase_23 AC 61 ms
31,308 KB
testcase_24 AC 490 ms
30,972 KB
testcase_25 AC 573 ms
31,300 KB
testcase_26 AC 1,128 ms
31,168 KB
testcase_27 AC 97 ms
31,576 KB
testcase_28 AC 1,102 ms
31,168 KB
testcase_29 AC 64 ms
31,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = intval(fgets(STDIN));
$gmp_n = gmp_init($n);
$fact_time = 0;
$i = 2;
$gmp_one=gmp_init(1);
for ( ; gmp_cmp($i*$i,$gmp_n)<0; $i++ ) {
	while ( gmp_cmp(gmp_div_r($gmp_n,$i),0) == 0 ) {
		$gmp_n = gmp_div_q($gmp_n, $i);
		$fact_time++;
	}
	if ( $fact_time > 2 ) {
		break;
	}
}
if (gmp_cmp(gmp_div_r($gmp_n,$i),1) > 0){
	$fact_time++;
}
if ( $fact_time > 2 ) {
    echo "YES".PHP_EOL;
}
else {
    echo "NO".PHP_EOL;
}
0