Accepted
Code
#include <iostream>
using namespace std;
int main() {
int T;
cin >> T;
while (T--) {
long long N, D, A, B;
cin >> N >> D;
cin >> A >> B;
long long totalCost = 0;
if (N <= D) {
totalCost = N * A;
} else {
totalCost = (D * A) + ((N - D) * B);
}
cout << totalCost << endl; // Output the total cost
}
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:56:44
- Judged At
- 2024-11-11 03:02:13
- Judged By
- Score
- 100
- Total Time
- 311ms
- Peak Memory
- 1.41 MiB