Accepted
Code
#include <iostream>
using namespace std;
#define ll long long
int main() {
int T;
cin >> T;
while (T--) {
ll a , b ;
cin >> a >> b ;
ll ssss = a*b - min(a,b);
cout << ssss << endl ;
}
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:59:51
- Judged At
- 2024-11-11 03:02:07
- Judged By
- Score
- 100
- Total Time
- 335ms
- Peak Memory
- 2.242 MiB