結果

問題 No.2138 Add Bacon
ユーザー kwkkwk
提出日時 2022-12-13 13:46:02
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 30,464 KB
実行使用メモリ 30,948 KB
最終ジャッジ日時 2024-11-07 09:08:05
合計ジャッジ時間 2,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 44 ms
30,744 KB
testcase_03 AC 43 ms
30,852 KB
testcase_04 WA -
testcase_05 AC 43 ms
30,464 KB
testcase_06 AC 44 ms
30,704 KB
testcase_07 AC 43 ms
30,816 KB
testcase_08 WA -
testcase_09 AC 41 ms
30,620 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 42 ms
30,764 KB
testcase_15 WA -
testcase_16 AC 42 ms
30,892 KB
testcase_17 AC 42 ms
30,528 KB
testcase_18 WA -
testcase_19 AC 42 ms
30,736 KB
testcase_20 WA -
testcase_21 AC 42 ms
30,764 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 43 ms
30,600 KB
testcase_25 WA -
testcase_26 AC 43 ms
30,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
[$a,$b,$c,$d,$e] = explode(" ",trim(fgets(STDIN)));
$ans=0;
for ($i = 0; $i < $c; $i++) {
     $f =($a+$i*$d)-($b+$i*$e);
     if ($f>$ans) {
         $ans=$f;
     }
}
 echo $ans;


?>
0