結果
問題 | No.2138 Add Bacon |
ユーザー | terasa |
提出日時 | 2022-12-01 00:14:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 61 ms / 2,000 ms |
コード長 | 467 bytes |
コンパイル時間 | 313 ms |
コンパイル使用メモリ | 82,088 KB |
実行使用メモリ | 55,936 KB |
最終ジャッジ日時 | 2024-10-07 19:38:25 |
合計ジャッジ時間 | 2,535 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 25 |
ソースコード
import sys import itertools import heapq import bisect import math from collections import deque, defaultdict from functools import lru_cache, cmp_to_key input = sys.stdin.readline if __file__ != 'prog.py': sys.setrecursionlimit(10 ** 6) def readints(): return map(int, input().split()) def readlist(): return list(readints()) def readstr(): return input()[:-1] A, B, C, D, E = readints() def f(x): return (D - E) * x + A - B print(max(f(0), f(C)))