Accepted
Code
#include <iostream>
using namespace std;
int main()
{
int t;
cin >> t;
while(t--){
long long a, b;
cin >> a >> b;
long long total_pairs = a*b;
long long same_pairs = min(a,b);
long long result = total_pairs - same_pairs;
cout << result << endl;
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1075 GCD not equal LCM
- Contest
- Brain Booster #5
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-09-05 15:54:11
- Judged At
- 2024-10-03 13:09:55
- Judged By
- Score
- 100
- Total Time
- 259ms
- Peak Memory
- 2.426 MiB