結果

問題 No.435 占い(Extra)
ユーザー square1001square1001
提出日時 2018-05-20 20:36:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 33,280 KB
実行使用メモリ 22,720 KB
最終ジャッジ日時 2024-10-08 12:23:39
合計ジャッジ時間 6,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
22,656 KB
testcase_01 AC 68 ms
22,656 KB
testcase_02 AC 68 ms
22,656 KB
testcase_03 AC 67 ms
22,656 KB
testcase_04 AC 67 ms
22,420 KB
testcase_05 AC 67 ms
22,632 KB
testcase_06 AC 68 ms
22,528 KB
testcase_07 AC 67 ms
22,428 KB
testcase_08 AC 68 ms
22,528 KB
testcase_09 AC 67 ms
22,600 KB
testcase_10 AC 69 ms
22,720 KB
testcase_11 AC 69 ms
22,656 KB
testcase_12 AC 80 ms
22,656 KB
testcase_13 AC 80 ms
22,700 KB
testcase_14 AC 80 ms
22,616 KB
testcase_15 AC 79 ms
22,532 KB
testcase_16 AC 85 ms
22,432 KB
testcase_17 AC 136 ms
22,468 KB
testcase_18 AC 78 ms
22,568 KB
testcase_19 AC 78 ms
22,656 KB
testcase_20 AC 192 ms
22,636 KB
testcase_21 AC 193 ms
22,656 KB
testcase_22 AC 192 ms
22,636 KB
testcase_23 AC 192 ms
22,648 KB
testcase_24 AC 199 ms
22,656 KB
testcase_25 AC 252 ms
22,668 KB
testcase_26 AC 192 ms
22,636 KB
testcase_27 AC 201 ms
22,656 KB
testcase_28 AC 68 ms
22,656 KB
testcase_29 AC 194 ms
22,648 KB
testcase_30 AC 192 ms
22,656 KB
testcase_31 AC 169 ms
22,656 KB
testcase_32 AC 177 ms
22,656 KB
testcase_33 AC 196 ms
22,708 KB
testcase_34 AC 224 ms
22,656 KB
testcase_35 AC 198 ms
22,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#pragma warning(disable : 4996)
const int inv[] = { 0, 1, 5, 0, 7, 2, 0, 4, 8 };
int q, n, x, a, b, m; short fact[10000009];
int main() {
	fact[0] = 1;
	for (int i = 1; i <= 10000000; ++i) {
		x = i;
		while (x % 3 == 0) x /= 3;
		fact[i] = fact[i - 1] * x % 9;
	}
	scanf("%d", &q);
	while (q--) {
		scanf("%d%d%d%d%d", &n, &x, &a, &b, &m);
		int cur = x, ord = 0, mul = 1, ret = 0, f = 0;
		for (int i = 0; i < n; i++) {
			if (cur % 10 != 0) f = 1;
			ret = (ret + cur % 10 * (ord == 0 ? mul : (ord == 1 ? mul % 3 * 3 : 0))) % 9;
			cur = ((cur ^ a) + b) % m;
			x = i + 1;
			while (x % 3 == 0) x /= 3, ord--;
			mul = mul * inv[x % 9] % 9;
			x = n - i - 1;
			while (x != 0 && x % 3 == 0) x /= 3, ord++;
			mul = mul * x % 9;
		}
		printf("%d\n", ret + (ret == 0 && f == 1 ? 9 : 0));
	}
	return 0;
}
0