結果

問題 No.2138 Add Bacon
ユーザー wanuiwanui
提出日時 2022-12-01 19:25:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-10-08 22:43:01
合計ジャッジ時間 2,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d,e=map(int,input().split())
ans=0
for i in range(0,c+1):
    ans=max(ans,d*i-e*i)
ans = a-b+ans
print(ans)
0