結果

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

ソースコード

diff #

#include <iostream>
#include <cassert>
using namespace std;

int main(){
    int T;
    cin >> T;
    assert(1 <= T && T <= 1000);
    while(T--){
        int L, R, A, B;
        cin >> L >> R >> A >> B;
        assert(-1000 <= L && L <= R && R <= 1000);
        assert(-1000 <= A && A <= 1000);
        assert(-1000 <= B && B <= 1000);
        if (A >= 0){
            cout << R * A + B << endl;
        }
        else{
            cout << L * A + B << endl;
        }
    }
}
0