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