結果

問題 No.192 合成数
ユーザー po1415po1415
提出日時 2015-05-27 00:09:09
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 1,416 ms
コンパイル使用メモリ 30,736 KB
実行使用メモリ 31,244 KB
最終ジャッジ日時 2024-06-27 01:37:32
合計ジャッジ時間 2,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,244 KB
testcase_01 AC 44 ms
31,108 KB
testcase_02 AC 41 ms
31,032 KB
testcase_03 AC 40 ms
31,028 KB
testcase_04 AC 41 ms
30,972 KB
testcase_05 AC 41 ms
30,852 KB
testcase_06 AC 41 ms
30,944 KB
testcase_07 AC 41 ms
30,696 KB
testcase_08 AC 40 ms
30,948 KB
testcase_09 AC 41 ms
31,076 KB
testcase_10 AC 44 ms
31,012 KB
testcase_11 AC 41 ms
31,100 KB
testcase_12 AC 42 ms
31,176 KB
testcase_13 AC 40 ms
30,844 KB
testcase_14 AC 41 ms
31,244 KB
testcase_15 AC 42 ms
30,632 KB
testcase_16 AC 42 ms
31,184 KB
testcase_17 AC 41 ms
30,928 KB
testcase_18 AC 41 ms
31,200 KB
testcase_19 AC 40 ms
30,692 KB
testcase_20 AC 41 ms
31,056 KB
testcase_21 AC 41 ms
30,704 KB
testcase_22 AC 41 ms
30,548 KB
testcase_23 AC 41 ms
30,656 KB
testcase_24 AC 40 ms
30,984 KB
testcase_25 AC 41 ms
30,868 KB
testcase_26 AC 41 ms
30,604 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN, '%d', $num);

$min = $num - 100;
$max = $num + 100;

for ($i = $min; $i <= $max; $i++) {

	if (check($i)) {
		echo $i;
		break;
	}
}

function check($num) {
	for ($i = 2; $i < $num; $i++) {
		if ($num % $i === 0) {
			return true;
		}
	}
	return false;
}

?>
0