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-11-11 03:02:24
- Judged By
- Score
- 100
- Total Time
- 278ms
- Peak Memory
- 2.152 MiB