結果
問題 | No.722 100×100=1000 |
ユーザー | lewin |
提出日時 | 2019-06-03 12:47:18 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 468 bytes |
コンパイル時間 | 130 ms |
コンパイル使用メモリ | 32,148 KB |
実行使用メモリ | 39,224 KB |
最終ジャッジ日時 | 2024-10-12 12:07:37 |
合計ジャッジ時間 | 4,262 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
39,220 KB |
testcase_01 | AC | 40 ms
32,404 KB |
testcase_02 | AC | 40 ms
32,252 KB |
testcase_03 | WA | - |
testcase_04 | AC | 41 ms
32,276 KB |
testcase_05 | AC | 41 ms
32,212 KB |
testcase_06 | AC | 41 ms
32,404 KB |
testcase_07 | AC | 40 ms
32,656 KB |
testcase_08 | AC | 41 ms
32,400 KB |
testcase_09 | AC | 40 ms
32,400 KB |
testcase_10 | AC | 41 ms
32,404 KB |
testcase_11 | AC | 41 ms
32,528 KB |
testcase_12 | AC | 41 ms
32,404 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php pro2(); function pro2() { $str = trim(fgets(STDIN)); list ($a, $b) = explode(' ', $str); $res = $a % 100 == 0 && $b % 100 == 0 && test($a) && test($b); if ($res) { $answer = $a * $b / 10; } else { $answer = $a * $b; if ($answer < -99999999 || $answer > 99999999) { $answer = 'E'; } } echo $answer . PHP_EOL; } function test($num) { while (true) { $num /= 10; if ($num % 10 != 0) { break; } } return ($num >= 1 && $num <= 9); }