結果

問題 No.312 置換処理
ユーザー papinianuspapinianus
提出日時 2016-09-21 12:57:45
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 30,496 KB
実行使用メモリ 30,948 KB
最終ジャッジ日時 2024-11-17 10:19:15
合計ジャッジ時間 3,731 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,440 KB
testcase_01 AC 48 ms
30,532 KB
testcase_02 AC 78 ms
30,816 KB
testcase_03 AC 51 ms
30,648 KB
testcase_04 AC 42 ms
30,860 KB
testcase_05 AC 42 ms
30,452 KB
testcase_06 AC 43 ms
30,816 KB
testcase_07 AC 52 ms
30,640 KB
testcase_08 AC 42 ms
30,660 KB
testcase_09 AC 44 ms
30,612 KB
testcase_10 AC 42 ms
30,948 KB
testcase_11 AC 46 ms
30,664 KB
testcase_12 AC 42 ms
30,540 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 41 ms
30,576 KB
testcase_23 WA -
testcase_24 AC 41 ms
30,464 KB
testcase_25 AC 42 ms
30,752 KB
testcase_26 AC 42 ms
30,764 KB
testcase_27 WA -
testcase_28 AC 42 ms
30,484 KB
testcase_29 AC 42 ms
30,512 KB
testcase_30 AC 43 ms
30,612 KB
testcase_31 WA -
testcase_32 AC 45 ms
30,828 KB
testcase_33 AC 53 ms
30,564 KB
testcase_34 AC 53 ms
30,872 KB
testcase_35 AC 43 ms
30,804 KB
testcase_36 AC 42 ms
30,656 KB
testcase_37 AC 42 ms
30,548 KB
testcase_38 WA -
testcase_39 AC 42 ms
30,800 KB
testcase_40 AC 42 ms
30,448 KB
testcase_41 AC 42 ms
30,800 KB
testcase_42 AC 42 ms
30,684 KB
testcase_43 AC 43 ms
30,796 KB
testcase_44 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

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