Wrong Answer
Code
#include <bits/stdc++.h>
#define ll long long
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int t;
cin >> t;
while (t--)
{
ll a, b, c, d;
cin >> a >> b >> c >> d;
cout << (b * c) + ((a - b) * d) << endl;
}
}
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 11:18:22
- Judged At
- 2024-10-30 11:18:22
- Judged By
- Score
- 10
- Total Time
- 1ms
- Peak Memory
- 536.0 KiB