結果

問題 No.2138 Add Bacon
ユーザー 👑 rin204rin204
提出日時 2022-12-01 00:00:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 91 bytes
コンパイル時間 565 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 53,228 KB
最終ジャッジ日時 2024-10-07 19:32:58
合計ジャッジ時間 1,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,940 KB
testcase_01 AC 34 ms
52,476 KB
testcase_02 AC 32 ms
52,244 KB
testcase_03 AC 31 ms
53,052 KB
testcase_04 AC 31 ms
51,808 KB
testcase_05 AC 32 ms
52,156 KB
testcase_06 AC 32 ms
52,824 KB
testcase_07 AC 31 ms
53,228 KB
testcase_08 AC 33 ms
52,200 KB
testcase_09 AC 33 ms
52,260 KB
testcase_10 AC 32 ms
52,688 KB
testcase_11 AC 35 ms
52,176 KB
testcase_12 AC 32 ms
52,820 KB
testcase_13 AC 32 ms
52,140 KB
testcase_14 AC 33 ms
52,284 KB
testcase_15 AC 33 ms
52,260 KB
testcase_16 AC 32 ms
52,484 KB
testcase_17 AC 32 ms
52,500 KB
testcase_18 AC 32 ms
51,792 KB
testcase_19 AC 35 ms
52,068 KB
testcase_20 AC 35 ms
52,264 KB
testcase_21 AC 33 ms
51,820 KB
testcase_22 AC 32 ms
53,076 KB
testcase_23 AC 33 ms
51,936 KB
testcase_24 AC 32 ms
52,068 KB
testcase_25 AC 32 ms
51,876 KB
testcase_26 AC 33 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d, e = map(int, input().split())
ans = a - b
ans += max(0, c * (d - e))
print(ans)
0