Accepted
Code
/*
* @author:- SYEDA SADIATUL JANNAT TUSHI
* date & time :2024-09-05 20:55:29
* BANGLADESH , SYLHET.
*/
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define rep(i, a, b) for(int i = (a); i < (b); i++)
#define ll long long
#define vi vector<ll>
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
void solve() {
ll a,b;
cin>>a>>b;
cout<< (a*b)-(min(a,b)) <<endl;
}
int main() {
fast;
ll 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++20 (G++ 13.2.0)
- Submit At
- 2024-09-05 16:26:42
- Judged At
- 2024-10-03 13:07:33
- Judged By
- Score
- 100
- Total Time
- 28ms
- Peak Memory
- 2.277 MiB