結果

問題 No.2208 Linear Function
ユーザー ああいいああいい
提出日時 2023-02-10 21:48:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 65,536 KB
最終ジャッジ日時 2024-07-07 16:01:15
合計ジャッジ時間 929 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 65 ms
65,408 KB
testcase_02 AC 64 ms
65,536 KB
testcase_03 AC 63 ms
65,408 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