Accepted
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;
if(n<d)
{
long long ans=n*a;
cout<<ans<<"\n";
}
else
{
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:16:38
- Judged At
- 2024-10-30 10:16:38
- Judged By
- Score
- 100
- Total Time
- 300ms
- Peak Memory
- 1.441 MiB