結果

問題 No.1819 Mirrored 2
ユーザー nok0nok0
提出日時 2021-12-23 22:42:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 1,850 ms
コンパイル使用メモリ 205,200 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 15:57:41
合計ジャッジ時間 3,239 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
	long long p, q, x, y;
	cin >> p >> q >> x >> y;
	vector<int> table(p + 1, 0);
	int now = 1;
	for(int i = 1; i < p; i++) {
		now *= 10;
		now %= p;
		table[now] = i;
	}

	long long m = y;
	auto chk = [&]() {
		if(m % 10 == 0) return false;
		auto s = to_string(m);
		reverse(s.begin(), s.end());
		long long val = stoll(s);
		return val % p != 0;
	};
	while(!chk()) m += q;

	string res = to_string(m);
	reverse(res.begin(), res.end());
	m = stoll(res);

	int k = table[m % p];
	int l = table[x];
	if(l < k) l += p - 1;

	for(int i = 0; i < l - k; i++) res.push_back('0');
	cout << res << endl;
}
0