/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 20ms 640.0 KiB
#4 Accepted 173ms 1.391 MiB
#5 Accepted 174ms 2.02 MiB
#6 Accepted 188ms 2.137 MiB

Code

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

void solve()
{
    int a, b; cin>>a>>b;
    cout<<(a*b)-min(a, b)<<endl;

}

signed main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int test = 1;
    cin >> test;
    for (int tc = 0; tc < test; ++tc)
    {
        solve();
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1075 GCD not equal LCM
Contest
Brain Booster #5
Language
C++17 (G++ 13.2.0)
Submit At
2024-09-05 16:31:06
Judged At
2024-09-05 16:31:06
Judged By
Score
100
Total Time
188ms
Peak Memory
2.137 MiB