Accepted
Code
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
void solve() {
ll a,b;
cin>>a>>b;
ll total_pair=a*b;
ll same=min(a,b);
cout<<total_pair-same<<endl;
}
int main(){
int t;
cin>>t;
while(t--){
solve();
}
return 0;
}
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:46:49
- Judged At
- 2024-10-03 13:10:25
- Judged By
- Score
- 100
- Total Time
- 257ms
- Peak Memory
- 2.223 MiB