Accepted
Code
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
// #define cerr cout
#include "algo/debug.h"
#else
#define deb(...) 30
#endif
#define ll long long
#define all(x) (x).begin(), (x).end()
#define f(i, n) for (int i = 0; i < n; i++)
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while (t--)
{
ll n, d, a, b;
cin >> n >> d >> a >> b;
if (n <= d)
cout << n * a << endl;
else
cout << (d * a + (n - d) * b) << endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1090 Summer trip
- Contest
- Brain Booster #5
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-09-05 15:32:46
- Judged At
- 2024-10-03 13:11:51
- Judged By
- Score
- 100
- Total Time
- 218ms
- Peak Memory
- 1.457 MiB