結果

問題 No.722 100×100=1000
ユーザー thaioki_thaioki_
提出日時 2019-06-03 12:46:22
言語 PHP
(843.2)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 322 bytes
コンパイル時間 3,434 ms
コンパイル使用メモリ 30,768 KB
実行使用メモリ 31,572 KB
最終ジャッジ日時 2024-12-29 19:45:27
合計ジャッジ時間 5,258 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
31,264 KB
testcase_01 AC 45 ms
31,284 KB
testcase_02 AC 48 ms
31,572 KB
testcase_03 AC 46 ms
31,292 KB
testcase_04 AC 47 ms
31,472 KB
testcase_05 AC 46 ms
31,028 KB
testcase_06 AC 47 ms
31,076 KB
testcase_07 AC 45 ms
31,452 KB
testcase_08 AC 47 ms
31,280 KB
testcase_09 AC 46 ms
31,104 KB
testcase_10 AC 46 ms
31,400 KB
testcase_11 AC 44 ms
31,368 KB
testcase_12 AC 46 ms
30,988 KB
testcase_13 AC 46 ms
31,404 KB
testcase_14 AC 46 ms
31,308 KB
testcase_15 AC 45 ms
31,472 KB
testcase_16 AC 46 ms
31,412 KB
testcase_17 AC 43 ms
30,952 KB
testcase_18 AC 45 ms
31,224 KB
testcase_19 AC 47 ms
31,388 KB
testcase_20 AC 44 ms
31,264 KB
testcase_21 AC 46 ms
31,304 KB
testcase_22 AC 46 ms
31,312 KB
testcase_23 WA -
testcase_24 AC 47 ms
31,184 KB
testcase_25 AC 47 ms
31,024 KB
testcase_26 AC 46 ms
31,300 KB
testcase_27 AC 45 ms
31,204 KB
testcase_28 AC 46 ms
30,864 KB
testcase_29 AC 46 ms
31,288 KB
testcase_30 AC 46 ms
31,452 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$array = explode(' ', trim(fgets(STDIN)));
$a = $array[0];
$b = $array[1];

if (abs(preg_replace("/0{2,}$/",'',$a)) < 10 && abs(preg_replace("/0{2,}$/",'',$b)) < 10) {
    $result = ($a*$b)/10;
} else {
    $result = $a*$b;
    if (abs($result) > 99999999) {
        $result = "E";
        
    }
}

echo $result;
?>
0