Accepted
Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
void solve(){
ll a, b;
cin >> a >> b;
ll ans = (a * b) - min(a, b);
cout << ans << '\n';
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int t = 1;
cin >> t;
while(t--){
solve();
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1075 GCD not equal LCM
- Contest
- Brain Booster #5
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-09-05 15:44:53
- Judged At
- 2024-10-03 13:10:33
- Judged By
- Score
- 100
- Total Time
- 29ms
- Peak Memory
- 2.055 MiB