/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;

#define ll long long
#define nl << "\n"
#define fast ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);

int main() {
	int t;
	cin >> t;
	while(t--) {
		ll a, b;
		cin >> a >> b;
		cout << (a * b) - min(a, b) nl;
	}
}

Information

Submit By
Type
Pretest
Problem
P1075 GCD not equal LCM
Language
C++17 (G++ 13.2.0)
Submit At
2024-10-02 11:03:43
Judged At
2024-11-11 02:51:44
Judged By
Score
10
Total Time
1ms
Peak Memory
324.0 KiB