結果
問題 | No.2208 Linear Function |
ユーザー | Shirotsume |
提出日時 | 2023-01-15 06:11:04 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 55 ms / 2,000 ms |
コード長 | 326 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 62,592 KB |
最終ジャッジ日時 | 2024-06-08 10:05:37 |
合計ジャッジ時間 | 960 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
53,632 KB |
testcase_01 | AC | 54 ms
62,592 KB |
testcase_02 | AC | 55 ms
62,592 KB |
testcase_03 | AC | 55 ms
62,592 KB |
ソースコード
import sys from collections import deque, Counter input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) inf = 2 ** 63 - 1 mod = 998244353 def solve(): l, r, a, b = mi() print(max(a * l + b, a * r + b)) for _ in range(ii()): solve()