結果

問題 No.1086 桁和の桁和2
ユーザー QCFiumQCFium
提出日時 2020-06-15 22:20:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 809 bytes
コンパイル時間 1,672 ms
コンパイル使用メモリ 167,584 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 11:34:43
合計ジャッジ時間 5,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 78 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 WA -
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 49 ms
6,940 KB
testcase_11 AC 15 ms
6,940 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 62 ms
6,940 KB
testcase_14 AC 41 ms
6,940 KB
testcase_15 AC 11 ms
6,944 KB
testcase_16 AC 54 ms
6,940 KB
testcase_17 AC 7 ms
6,940 KB
testcase_18 WA -
testcase_19 AC 64 ms
6,944 KB
testcase_20 AC 9 ms
6,940 KB
testcase_21 AC 53 ms
6,944 KB
testcase_22 AC 74 ms
6,944 KB
testcase_23 AC 48 ms
6,940 KB
testcase_24 AC 32 ms
6,940 KB
testcase_25 AC 65 ms
6,944 KB
testcase_26 AC 54 ms
6,944 KB
testcase_27 AC 39 ms
6,944 KB
testcase_28 AC 32 ms
6,944 KB
testcase_29 WA -
testcase_30 AC 77 ms
6,944 KB
testcase_31 AC 81 ms
6,940 KB
testcase_32 WA -
testcase_33 AC 77 ms
6,940 KB
testcase_34 AC 78 ms
6,944 KB
testcase_35 AC 82 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}

#define MOD 1000000007

int mpow(int a, int64_t b) {
	b %= 1000000006;
	int res = 1;
	for (; b; b >>= 1) {
		if (b & 1) res = (int64_t) res * a % MOD;
		a = (int64_t) a * a % MOD;
	}
	return res;
}

int main() {
	int n = ri();
	int64_t l[n], r[n];
	int d[n];
	for (auto &i : l) scanf("%" SCNd64, &i);
	for (auto &i : r) scanf("%" SCNd64, &i);
	for (auto &i : d) i = ri();
	
	int head = 0;
	while (head < n && !d[head]) head++;
	
	int res = 1;
	for (int i = head; i < n; i++) {
		if (!d[i]) res = 0;
		int diff = (d[i] - (i ? d[i - 1] : 0)) % 9;
		int times = !diff + (int64_t) (mpow(10, r[i]) - mpow(10, l[i])) * 111111112 % MOD;
		res = (int64_t) res * times % MOD;
	}
	if (res < 0) res += MOD;
	printf("%d\n", res);
	return 0;
}

0