/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 348.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 3ms 600.0 KiB
#4 Accepted 42ms 1.27 MiB
#5 Accepted 27ms 2.113 MiB
#6 Accepted 27ms 2.031 MiB

Code

/* 
*   @author:- SYEDA SADIATUL JANNAT TUSHI
*   date & time :2024-09-05 20:55:29
*   BANGLADESH , SYLHET. 
*/

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

#define endl '\n'
#define rep(i, a, b) for(int i = (a); i < (b); i++)
#define ll long long
#define vi vector<ll>
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);

void solve() {
    ll a,b;
    cin>>a>>b;

    cout<< (a*b)-(min(a,b)) <<endl;
}

int main() {
    fast;
    ll T;
    cin >> T;
    while (T--) {
        solve();
    }
    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 16:26:42
Judged At
2024-09-05 16:26:42
Judged By
Score
100
Total Time
42ms
Peak Memory
2.113 MiB