結果

問題 No.186 中華風 (Easy)
ユーザー テナガザルテナガザル
提出日時 2024-06-23 18:30:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,002 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-23 18:30:27
合計ジャッジ時間 1,521 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
//(val, lcm(m1, m2)): val=b1(mod m1), val=b2(mod m2)
std::pair<long long, long long> crt(long long b1, long long m1, long long b2, long long m2)
{
    long long x = 1, y = 0, x1 = 0, y1 = 1, g = m1, b = m2;
    while (b != 0)
    {
        long long n = g / b;
        g %= b; std::swap(g, b);
        x -= x1 * n; std::swap(x, x1);
        y -= y1 * n; std::swap(y, y1);
    }
    if ((b2 - b1) % g != 0) return {0, -1};
    long long lc = m1 / g * m2;
    return {((b1 + m1 * ((b2 - b1) / g * x % (m2 / g))) % lc + lc) % lc, lc};
}
using namespace std;

int main()
{
	int x[3], y[3];
	for (int i = 0; i < 3; ++i) cin >> x[i] >> y[i];
	pair<long long, long long> ans = crt(x[0], y[0], x[1], y[1]);
	if (ans.second == -1)
	{
		cout << -1 << endl;
		return 0;
	}
	ans = crt(ans.first, ans.second, x[2], y[2]);
	if (ans.second == -1) cout << -1 << endl;
	else
	{
		if (ans.second == 0) ans.second = ans.first;
		cout << ans.second << endl;
	}
}
0