Wrong Answer
Code
#include <iostream>
using namespace std;
int main()
{
int t,n,d,a,b;
cin>>t;
for(int i=0;i<t;i++){
cin>>n>>d>>a>>b;
int k= n-d;
int cost = (d*a) + (k*b);
cout<<cost<<endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1090 Summer trip
- Contest
- Brain Booster #5
- Language
- C++11 (G++ 13.2.0)
- Submit At
- 2024-09-05 16:25:40
- Judged At
- 2024-10-03 13:07:39
- Judged By
- Score
- 10
- Total Time
- 314ms
- Peak Memory
- 1.605 MiB