結果

問題 No.315 世界のなんとか3.5
ユーザー pekempeypekempey
提出日時 2015-12-08 00:22:31
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,171 bytes
コンパイル時間 1,289 ms
コンパイル使用メモリ 150,364 KB
実行使用メモリ 23,312 KB
最終ジャッジ日時 2023-10-12 20:18:26
合計ジャッジ時間 8,138 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,352 KB
testcase_01 AC 2 ms
4,352 KB
testcase_02 AC 7 ms
4,348 KB
testcase_03 AC 3 ms
4,348 KB
testcase_04 AC 4 ms
4,352 KB
testcase_05 AC 3 ms
4,352 KB
testcase_06 AC 3 ms
4,356 KB
testcase_07 AC 3 ms
4,352 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define GET_MACRO(a, b, c, NAME, ...) NAME
#define rep(...) GET_MACRO(__VA_ARGS__, rep3, rep2)(__VA_ARGS__)
#define rep2(i, a) rep3 (i, 0, a)
#define rep3(i, a, b) for (int i = (a); i < (b); i++)
#define repr(...) GET_MACRO(__VA_ARGS__, repr3, repr2)(__VA_ARGS__)
#define repr2(i, a) repr3 (i, 0, a)
#define repr3(i, a, b) for (int i = (b) - 1; i >= (a); i--)
template<class T1, class T2> inline bool chmin(T1 &a, T2 b) { return b < a && (a = b, true); }
template<class T1, class T2> inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }
using namespace std;
typedef long long ll;

const ll mod = 1e9 + 7;
ll dp[202020][2][3][2]; // pos, less, mod, three
ll dp2[7][2][3][2][800]; // pos, less, mod 3, three, mod P

template<class T>
T parse(string s) {
	istringstream iss(s);
	T res;
	iss >> res;
	return res;
}

ll f(string N, int P) {
	if (N.length() < 6) {
		int n = parse<int>(N);
		int res = 0;
		rep (i, n + 1) {
			bool three = i % 3 == 0;
			bool eight = i % P == 0;
			int t = i;
			while (t > 0) {
				if (t % 10 == 3) three = true;
				t /= 10;
			}
			if (three && !eight) res++;
		}
		return res;
	}

	int s = N.length();
	dp[0][0][0][0] = 1;
	rep (i, s - 6) rep (j, 2) rep (k, 3) rep (l, 2) {
		int ub = 9;
		if (!j) ub = N[i] - '0';
		rep (m, ub + 1) {
			(dp[i + 1][j || m < ub][(k + m) % 3][l || m == 3] += dp[i][j][k][l]) %= mod;
		}
	}
	s -= 6;
	rep (j, 2) rep (k, 3) rep (l, 2) {
		dp2[0][j][k][l][0] = dp[s][j][k][l];
	}

	rep (i, 6) rep (j, 2) rep (k, 3) rep (l, 2) rep (m, P) {
		int ub = 9;
		if (!j) ub = N[i] - '0';
		rep (x, ub + 1) {
			(dp2[i + 1][j || x < ub][(k + x) % 3][l || x == 3][(m * 10 + x) % P] += dp2[i][j][k][l][m]) %= mod;
		}
	}

	ll res = 0;
	rep (j, 2) rep (k, 3) rep (l, 2) rep (m, P) {
		if ((k == 0 || l) && m != 0) {
			(res += dp2[6][j][k][l][m]) %= mod;
		}
	}
	return res;
}

int main() {
	string A, B;
	int P;
	cin >> A >> B >> P;

	int borrow = 1;
	repr (i, A.length()) {
		int d = A[i] - '0';
		d -= borrow;
		if (d >= 0) borrow = 0;
		else d += 10;
		A[i] = d + '0';
	}
	ll ans = f(B, P);
	ans -= f(A, P);
	ans %= mod; ans += mod; ans %= mod;
	cout << ans << endl;
	return 0;
}
0