結果

問題 No.315 世界のなんとか3.5
ユーザー kyawashellkyawashell
提出日時 2018-03-26 13:58:09
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,952 bytes
コンパイル時間 2,180 ms
コンパイル使用メモリ 197,804 KB
最終ジャッジ日時 2025-01-05 09:36:55
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
#define pb push_back
int dy[]={0, 0, 1, -1, 1, 1, -1, -1};
int dx[]={1, -1, 0, 0, 1, -1, -1, 1};

#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define mp make_pair
#define fi first
#define sc second
ll mod = 1e9+7;
string A,B;
ll P;
ll dp [2][2][2][3][800];
int main(){
	cin >> A >> B >> P;


	ll n = B.length();

	dp[0][0][0][0][0] = 1;

	REP(i,n) {
		REP(j,2) {
			REP(k,2) {
				REP(l,3) {
					REP(m,P) {
						ll lim = (j ? 9 : B[i] - '0');

						REP(d,lim + 1) {
							(dp[1][j || d < lim][k || d == 3][(10 * l + d) % 3][(10 * m + d) % P] += dp[0][j][k][l][m] ) %= mod;
						}
					}
				}
			}
		}
		REP(j,2) {
			REP(k,2) {
				REP(l,3) {
					REP(m,P) {
						dp[0][j][k][l][m] = dp[1][j][k][l][m];
						dp[1][j][k][l][m] = 0;
					}
				}
			}
		}
	}

	ll ans = 0;
	REP(j,2) {
		REP(k,2) {
			REP(l,3) {
				REP(m,P) {
					if((k || !l) && m) {
						(ans += dp[0][j][k][l][m]) %= mod;
					}
				}
			}
		}
	}

	n = A.length();
	REP(i,2) {
		REP(j,2) {
			REP(k,2) {
				REP(l,3) {
					REP(m,P) {
						dp[i][j][k][l][m] = 0;
					}
				}
			}
		}
	}

	dp[0][0][0][0][0] = 1;

	REP(i,n) {
		REP(j,2) {
			REP(k,2) {
				REP(l,3) {
					REP(m,P) {
						ll lim = (j ? 9 : A[i] - '0');

						REP(d,lim + 1) {
							(dp[1][j || d < lim][k || d == 3][(10 * l + d) % 3][(10 * m + d) % P] += dp[0][j][k][l][m] ) %= mod;
						}
					}
				}
			}
		}
		REP(j,2) {
			REP(k,2) {
				REP(l,3) {
					REP(m,P) {
						dp[0][j][k][l][m] = dp[1][j][k][l][m];
						dp[1][j][k][l][m] = 0;
					}
				}
			}
		}
		
	}

	
	REP(j,2) {
		REP(k,2) {
			REP(l,3) {
				REP(m,P) {
					if(j && (k || !l) && m) {
						(ans += mod - dp[0][j][k][l][m]) %= mod;
					}
				}
			}
		}
	}
	cout << ans << endl;

	return 0;
}
0