結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,856 KB
testcase_01 AC 43 ms
31,120 KB
testcase_02 AC 42 ms
31,168 KB
testcase_03 AC 41 ms
31,408 KB
testcase_04 AC 42 ms
31,040 KB
testcase_05 AC 38 ms
31,064 KB
testcase_06 AC 41 ms
31,252 KB
testcase_07 AC 41 ms
31,116 KB
testcase_08 AC 40 ms
31,360 KB
testcase_09 AC 40 ms
30,892 KB
testcase_10 AC 41 ms
31,080 KB
testcase_11 AC 43 ms
31,480 KB
testcase_12 AC 42 ms
30,892 KB
testcase_13 AC 43 ms
31,040 KB
testcase_14 AC 41 ms
31,016 KB
testcase_15 AC 42 ms
30,952 KB
testcase_16 AC 41 ms
31,292 KB
testcase_17 AC 41 ms
30,920 KB
testcase_18 AC 42 ms
31,412 KB
testcase_19 AC 42 ms
30,996 KB
testcase_20 AC 42 ms
31,216 KB
testcase_21 AC 40 ms
30,980 KB
testcase_22 AC 40 ms
31,412 KB
testcase_23 WA -
testcase_24 AC 42 ms
31,488 KB
testcase_25 AC 43 ms
30,988 KB
testcase_26 AC 43 ms
31,008 KB
testcase_27 AC 44 ms
30,888 KB
testcase_28 AC 42 ms
31,172 KB
testcase_29 AC 42 ms
31,284 KB
testcase_30 AC 43 ms
30,988 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