Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin >> t;
while(t--){
long long a,b,n,d,ans;
cin >> n>>d>>a>>b;
ans=d*a+(n-d)*b;
cout << static_cast<long long>(ans)<< endl;
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1090 Summer trip
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-10-03 07:45:46
- Judged At
- 2024-11-11 02:51:32
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 540.0 KiB