/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 564.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Accepted 3ms 768.0 KiB
#5 Accepted 14ms 580.0 KiB
#6 Accepted 111ms 1.375 MiB
#7 Accepted 109ms 1.422 MiB
#8 Accepted 108ms 1.328 MiB
#9 Accepted 108ms 1.52 MiB
#10 Accepted 2ms 752.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define bug(a) cout << #a << " : " << a << endl;

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int t = 1; cin >> t;
    while (t--) {
        ll n,d;cin>>n>>d;
        ll a,b;cin>>a>>b;
        if(d>=n){
            cout<<n*a<<endl;
            continue;
        }
        cout<<(d)*a+(n-d)*b<<endl;
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1090 Summer trip
Language
C++17 (G++ 13.2.0)
Submit At
2024-12-13 12:14:21
Judged At
2024-12-13 12:14:21
Judged By
Score
100
Total Time
111ms
Peak Memory
1.52 MiB