Wrong Answer
Code
#include <iostream>
using namespace std;
int main() {
int T;
cin >> T;
for (int t = 0; t < T; ++t) {
int N, D;
cin >> N >> D;
long long A, B;
cin >> A >> B;
// Calculate the total accommodation fee
long long total_fee = 0;
// Cost for the first D nights
total_fee += D * A;
// Cost for the remaining (N - D) nights
if (N > D) {
total_fee += (N - D) * B;
}
// Output the total fee for this test case
cout << total_fee << endl;
}
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:43:42
- Judged At
- 2024-10-03 13:10:38
- Judged By
- Score
- 10
- Total Time
- 301ms
- Peak Memory
- 1.441 MiB