Wrong Answer
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=(d*a)+max(0ll,n-a)*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:32:16
- Judged At
- 2024-10-03 13:11:53
- Judged By
- Score
- 0
- Total Time
- 323ms
- Peak Memory
- 1.418 MiB