結果

問題 No.312 置換処理
ユーザー sam_kinosam_kino
提出日時 2016-08-11 14:09:12
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-11-07 10:48:22
合計ジャッジ時間 5,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 41 ms
31,388 KB
testcase_06 AC 44 ms
31,480 KB
testcase_07 AC 58 ms
31,052 KB
testcase_08 AC 40 ms
31,220 KB
testcase_09 AC 42 ms
31,232 KB
testcase_10 AC 41 ms
31,632 KB
testcase_11 AC 46 ms
30,920 KB
testcase_12 AC 41 ms
31,184 KB
testcase_13 AC 42 ms
31,152 KB
testcase_14 AC 41 ms
31,152 KB
testcase_15 AC 41 ms
31,224 KB
testcase_16 AC 41 ms
31,240 KB
testcase_17 AC 43 ms
31,300 KB
testcase_18 AC 40 ms
31,236 KB
testcase_19 AC 42 ms
30,984 KB
testcase_20 AC 40 ms
31,256 KB
testcase_21 AC 41 ms
31,132 KB
testcase_22 WA -
testcase_23 AC 41 ms
31,496 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 41 ms
31,156 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 41 ms
31,440 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 43 ms
31,320 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 41 ms
31,396 KB
testcase_39 AC 41 ms
31,200 KB
testcase_40 AC 40 ms
31,304 KB
testcase_41 WA -
testcase_42 AC 41 ms
31,604 KB
testcase_43 WA -
testcase_44 AC 40 ms
30,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?PHP
//   cd dot/PHP
//   PHP try.php

$num=trim(fgets(STDIN));
if($num%4==0){
	echo "4".PHP_EOL;
	exit;
}
//----------------------------------
for($i=3;$i<=$num/100000;$i+=2){


	if(($num%$i)==0){
		echo $i.PHP_EOL;
		exit;
	}
}
0