Accepted
Code
#include<bits/stdc++.h>
#define ll long long
#define endl '\n'
using namespace std;
int main()
{
ios_base:: sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
ll t;
cin>>t;
while(t--){
ll n,d;
cin>>n>>d;
ll tk, tk2;
cin>>tk2>>tk;
if(n>=d){
ll sub=n-d;
ll x=d*tk2;
ll y=sub*tk;
cout<<x+y<<endl;
}
else{
ll tm=n*tk2;
cout<<tm<<endl;
}
}
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:34:59
- Judged At
- 2024-10-30 09:34:59
- Judged By
- Score
- 100
- Total Time
- 65ms
- Peak Memory
- 1.367 MiB