Accepted
Code
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
long long a,b;
cin>>a>>b;
long long maxx=max(a,b);
long long minn=min(a,b);
cout<<minn*(maxx-1)<<endl;
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1075 GCD not equal LCM
- Contest
- Brain Booster #5
- Language
- C++11 (G++ 13.2.0)
- Submit At
- 2024-09-05 15:43:16
- Judged At
- 2024-10-03 13:10:38
- Judged By
- Score
- 100
- Total Time
- 280ms
- Peak Memory
- 2.062 MiB