Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long
int main()
{
int t;
cin>>t;
while(t--)
{
long long int n,d;
cin>>n>>d;
long long int a,b;
cin>>a>>b;
long long int diff=n-d;
long long int ans=(d*a)+(diff*b);
cout<<ans<<"\n";
}
return 0;
}
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 10:11:51
- Judged At
- 2024-10-30 10:11:51
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 552.0 KiB