Accepted
Code
#include <bits/stdc++.h>
using namespace std;
#define ll long long
void solve()
{
ll n, d;
cin >> n >> d;
ll a, b; cin >> a >> b;
d = min(n, d);
ll ans = (a * d);
ans += ((n - d) * b);
cout << ans << '\n';
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int t = 1, tc = 0;
cin >> t;
while(t--){
//cout << "Case " << ++tc << ": ";
solve();
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1090 Summer trip
- Contest
- Sylhet ICPC 2024 Collaborative Challenge: Episode 2
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-10-30 08:53:39
- Judged At
- 2024-10-30 08:53:39
- Judged By
- Score
- 100
- Total Time
- 66ms
- Peak Memory
- 1.328 MiB