結果

問題 No.312 置換処理
ユーザー papinianuspapinianus
提出日時 2016-09-21 13:01:59
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-11-17 10:20:16
合計ジャッジ時間 3,412 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 52 ms
32,404 KB
testcase_02 AC 107 ms
32,276 KB
testcase_03 AC 58 ms
32,272 KB
testcase_04 AC 41 ms
32,276 KB
testcase_05 AC 41 ms
32,276 KB
testcase_06 AC 42 ms
32,400 KB
testcase_07 AC 60 ms
32,404 KB
testcase_08 AC 41 ms
32,400 KB
testcase_09 AC 42 ms
32,404 KB
testcase_10 AC 42 ms
32,276 KB
testcase_11 AC 48 ms
32,272 KB
testcase_12 AC 42 ms
32,400 KB
testcase_13 AC 41 ms
32,272 KB
testcase_14 AC 41 ms
32,400 KB
testcase_15 AC 42 ms
32,400 KB
testcase_16 AC 41 ms
32,400 KB
testcase_17 AC 41 ms
32,276 KB
testcase_18 AC 42 ms
32,212 KB
testcase_19 AC 41 ms
32,400 KB
testcase_20 AC 42 ms
32,272 KB
testcase_21 AC 43 ms
32,404 KB
testcase_22 AC 42 ms
32,088 KB
testcase_23 WA -
testcase_24 AC 42 ms
32,400 KB
testcase_25 AC 42 ms
32,400 KB
testcase_26 AC 42 ms
32,400 KB
testcase_27 AC 42 ms
32,276 KB
testcase_28 AC 42 ms
32,276 KB
testcase_29 AC 42 ms
32,404 KB
testcase_30 AC 45 ms
32,532 KB
testcase_31 AC 41 ms
32,272 KB
testcase_32 AC 47 ms
32,212 KB
testcase_33 AC 62 ms
32,404 KB
testcase_34 AC 61 ms
32,148 KB
testcase_35 AC 44 ms
32,144 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 42 ms
32,404 KB
testcase_39 AC 41 ms
32,148 KB
testcase_40 AC 42 ms
32,528 KB
testcase_41 AC 41 ms
32,532 KB
testcase_42 AC 41 ms
32,144 KB
testcase_43 AC 41 ms
32,268 KB
testcase_44 AC 43 ms
32,468 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

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