結果

問題 No.2208 Linear Function
ユーザー ああいいああいい
提出日時 2023-02-10 21:48:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 86,820 KB
実行使用メモリ 76,292 KB
最終ジャッジ日時 2023-09-21 22:56:52
合計ジャッジ時間 1,216 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,252 KB
testcase_01 AC 95 ms
76,292 KB
testcase_02 AC 94 ms
76,252 KB
testcase_03 AC 95 ms
76,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    l,r,a,b = map(int,input().split())
    A = l * a + b
    B = r * a + b
    print(max(A,B))
0