Wrong Answer
Code
#include<bits/stdc++.h>
#define ll long long int
using namespace std;
int main()
{
ll t;
cin>>t;
while(t--){
ll n,d;
ll a,b;
cin>>n>>d>>a>>b;
ll dcost=d*a;
ll rest=0;
if(n>d){
ll c=n-d;
rest=c*b;
}
cout<<rest+dcost<<endl;
}
}
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 09:25:59
- Judged At
- 2024-10-30 09:25:59
- Judged By
- Score
- 10
- Total Time
- 1ms
- Peak Memory
- 532.0 KiB