結果

問題 No.312 置換処理
ユーザー papinianuspapinianus
提出日時 2016-09-21 13:16:01
言語 PHP
(8.3.4)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 5,022 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 31,464 KB
最終ジャッジ日時 2024-11-15 12:10:04
合計ジャッジ時間 3,705 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,192 KB
testcase_01 AC 85 ms
31,344 KB
testcase_02 AC 106 ms
31,112 KB
testcase_03 AC 107 ms
31,300 KB
testcase_04 AC 40 ms
30,980 KB
testcase_05 AC 43 ms
31,064 KB
testcase_06 AC 45 ms
31,436 KB
testcase_07 AC 61 ms
31,344 KB
testcase_08 AC 42 ms
30,988 KB
testcase_09 AC 42 ms
31,204 KB
testcase_10 AC 42 ms
31,276 KB
testcase_11 AC 48 ms
30,872 KB
testcase_12 AC 42 ms
31,192 KB
testcase_13 AC 42 ms
31,076 KB
testcase_14 AC 43 ms
31,436 KB
testcase_15 AC 42 ms
30,956 KB
testcase_16 AC 43 ms
31,032 KB
testcase_17 AC 42 ms
31,412 KB
testcase_18 AC 41 ms
31,464 KB
testcase_19 AC 41 ms
31,096 KB
testcase_20 AC 41 ms
31,224 KB
testcase_21 AC 41 ms
31,400 KB
testcase_22 AC 41 ms
30,820 KB
testcase_23 AC 40 ms
30,936 KB
testcase_24 AC 41 ms
31,208 KB
testcase_25 AC 41 ms
31,052 KB
testcase_26 AC 41 ms
31,352 KB
testcase_27 AC 41 ms
31,072 KB
testcase_28 AC 41 ms
31,304 KB
testcase_29 AC 41 ms
31,444 KB
testcase_30 AC 50 ms
30,900 KB
testcase_31 AC 40 ms
31,404 KB
testcase_32 AC 46 ms
31,404 KB
testcase_33 AC 61 ms
31,416 KB
testcase_34 AC 61 ms
31,192 KB
testcase_35 AC 42 ms
31,376 KB
testcase_36 AC 40 ms
31,300 KB
testcase_37 AC 40 ms
30,996 KB
testcase_38 AC 40 ms
31,052 KB
testcase_39 AC 41 ms
30,880 KB
testcase_40 AC 43 ms
31,256 KB
testcase_41 AC 43 ms
31,008 KB
testcase_42 AC 43 ms
31,332 KB
testcase_43 AC 42 ms
31,160 KB
testcase_44 AC 42 ms
31,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$num = trim(fgets(STDIN));
$root = floor(sqrt($num));
$ans = 0;
for($i = 3;$i <= $root; $i++)
{
    if(!($num % $i))
    {
        $ans = $i;
        break;
    }
}
if($ans == 0)
{
    if($num % 2)
    {
        echo $num;
    }
    else
    {
        echo ($num == 4)?4:$num / 2;
    }
}
else {
    echo $ans;
}
echo PHP_EOL;
0