/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 2ms 764.0 KiB
#3 Accepted 24ms 532.0 KiB
#4 Accepted 240ms 1.289 MiB
#5 Accepted 277ms 2.094 MiB
#6 Accepted 278ms 2.234 MiB

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
Submission
Problem
P1075 GCD not equal LCM
Language
C++17 (G++ 13.2.0)
Submit At
2024-10-02 11:03:11
Judged At
2024-11-11 02:51:44
Judged By
Score
100
Total Time
278ms
Peak Memory
2.234 MiB