結果

問題 No.2138 Add Bacon
ユーザー SKSK
提出日時 2023-01-04 10:47:25
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 162 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 30,964 KB
実行使用メモリ 31,352 KB
最終ジャッジ日時 2024-05-05 15:04:18
合計ジャッジ時間 1,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,264 KB
testcase_01 AC 34 ms
30,988 KB
testcase_02 AC 35 ms
31,004 KB
testcase_03 AC 35 ms
31,136 KB
testcase_04 AC 35 ms
31,288 KB
testcase_05 AC 35 ms
31,048 KB
testcase_06 AC 34 ms
31,180 KB
testcase_07 AC 35 ms
31,180 KB
testcase_08 AC 35 ms
31,196 KB
testcase_09 AC 35 ms
31,140 KB
testcase_10 AC 34 ms
31,148 KB
testcase_11 AC 34 ms
31,312 KB
testcase_12 AC 35 ms
31,352 KB
testcase_13 AC 36 ms
31,028 KB
testcase_14 AC 34 ms
31,252 KB
testcase_15 AC 34 ms
31,188 KB
testcase_16 AC 35 ms
31,028 KB
testcase_17 WA -
testcase_18 AC 36 ms
31,172 KB
testcase_19 AC 35 ms
30,936 KB
testcase_20 AC 35 ms
31,188 KB
testcase_21 AC 34 ms
31,024 KB
testcase_22 AC 36 ms
30,928 KB
testcase_23 AC 35 ms
31,156 KB
testcase_24 AC 36 ms
31,312 KB
testcase_25 AC 36 ms
31,120 KB
testcase_26 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
[$a,$b,$c,$d,$e]= explode(" ",trim(fgets(STDIN)));

if (($a + $d) >= ($b + $e)) {
    echo ($a + $c * $d) - ($b + $c * $e);
}else {
    echo $a - $b;
}


?>
0