結果

問題 No.442 和と積
ユーザー stone_725stone_725
提出日時 2018-07-03 14:55:45
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 510 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 133,136 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-20 10:52:21
合計ジャッジ時間 2,550 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 WA -
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
4,376 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

unsigned long long gcd(unsigned long long a, unsigned long long b) {
	return b ? gcd(b, a % b) : a;
}

void hawawa()
{
	unsigned long long a, b;
	cin >> a >> b;
	unsigned long long score1 = gcd(a + b, max(a, b));
	unsigned long long score2 = gcd(a + b, min(a, b));
	unsigned long long score3 = gcd(a + b, score1 * score2 / gcd(score1, score2));
	cout << score1 * score3 << "\n";
}

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	hawawa();
	return 0;
}
0