Accepted
Code
#include <bits/stdc++.h>
using namespace std;
#define int long long
void solve() {
int a, b;
cin >> a >> b;
int ans = a * b - min(a, b);
cout << ans << '\n';
}
signed main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int T = 1;
cin >> T;
while (T--) {
solve();
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1075 GCD not equal LCM
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-10-03 09:01:08
- Judged At
- 2024-11-11 02:51:30
- Judged By
- Score
- 100
- Total Time
- 30ms
- Peak Memory
- 2.219 MiB