結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 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 cout << ans.first << endl;
}
0