結果

問題 No.2138 Add Bacon
ユーザー kukutoni
提出日時 2023-07-01 12:50:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 258 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-07 23:22:37
合計ジャッジ時間 1,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

deli, calory, becon, deli_per_be, calo_per_be = list(map(int, input().split()))
utility = deli - calory
for n in len(becon):
	if deli + n*deli_per_be - n*calo_per_be - calory > utility:
		utility = deli + n*deli_per_be - n*calo_per_be - calory
print(utility)
0