結果

問題 No.442 和と積
ユーザー ultra instinct
提出日時 2021-11-04 16:45:55
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 388 bytes
コンパイル時間 1,688 ms
コンパイル使用メモリ 165,012 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 15:31:46
合計ジャッジ時間 2,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
    Author :- Rajat Shahi
    It's never too late !!
**/

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

int main()
{
    cin.tie(0)->sync_with_stdio(0);
    cin.exceptions(ios::badbit | ios::failbit);

    long long a, b;
    cin >> a >> b;

    long long gcd = __gcd(a, b);

    long long ans = gcd;

    a /= gcd, b /= gcd;
    ans *= __gcd(a + b, gcd);

    cout << ans << endl;
}
0