Wrong Answer
Code
#include <iostream>
using namespace std;
int main()
{
int t;
cin >> t;
while(t--){
int N , D;
cin >> N >> D;
int A , B;
cin >> A >> B;
cout << D*A +(N-D)*B << endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1090 Summer trip
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-09-07 06:58:47
- Judged At
- 2024-11-11 02:55:41
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 532.0 KiB