Accepted
Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
void solve(){
ll n, d;
cin >> n >> d;
ll a, b;
cin >> a >> b;
ll totalCost = 0;
if (n <= d) {
totalCost = n * a;
} else {
totalCost = d * a + (n - d) * b;
}
cout << totalCost << endl;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int t = 1;
cin >> t;
while(t--){
solve();
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1090 Summer trip
- Contest
- Brain Booster #5
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-09-05 15:38:17
- Judged At
- 2024-10-03 13:11:08
- Judged By
- Score
- 100
- Total Time
- 214ms
- Peak Memory
- 1.398 MiB