Accepted
Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
int main()
{
ll tc;
cin>>tc;
while(tc--)
{
ll n,d;
ll a,b;
cin>>n>>d;
cin>>a>>b;
ll x=min(n,d)*a+max(0ll,n-d)*b;
cout<<x<<endl;
}
}
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:34:14
- Judged At
- 2024-10-03 13:11:37
- Judged By
- Score
- 100
- Total Time
- 299ms
- Peak Memory
- 1.438 MiB