結果

問題 No.2208 Linear Function
ユーザー ttkkggww
提出日時 2023-02-10 21:21:26
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 3,330 ms
コンパイル使用メモリ 249,416 KB
最終ジャッジ日時 2025-02-10 12:03:35
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
ll l,r,a,b;
ll f(ll x){
	return a*x+b;
}

void solve(){
	cout<<max(f(l),f(r))<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	ll t;
	cin >> t;
	while(t--){
		cin >> l  >> r >> a >> b;
	solve();
	}
}
0