結果
| 問題 | No.2138 Add Bacon |
| コンテスト | |
| ユーザー |
terasa
|
| 提出日時 | 2022-12-01 00:14:22 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 34 ms / 2,000 ms |
| + 660µs | |
| コード長 | 467 bytes |
| 記録 | |
| コンパイル時間 | 70 ms |
| コンパイル使用メモリ | 80,896 KB |
| 実行使用メモリ | 63,104 KB |
| 最終ジャッジ日時 | 2026-09-11 16:31:50 |
| 合計ジャッジ時間 | 2,398 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)))
terasa