Wrong Answer
Code
#include <iostream>
using namespace std;
int main(){
int t, n, d, a, b;
cin >> t;
for(int i=0;i<t;i++){
cin >> n >> d;
cin >> a >> b;
cout << d*a + (n-d)*b << endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1090 Summer trip
- Contest
- Brain Booster #5
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-09-05 15:35:25
- Judged At
- 2024-10-03 13:11:30
- Judged By
- Score
- 10
- Total Time
- 301ms
- Peak Memory
- 1.418 MiB