結果

問題 No.260 世界のなんとか3
ユーザー kyawashellkyawashell
提出日時 2018-03-26 12:23:29
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 1,645 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 198,008 KB
最終ジャッジ日時 2025-01-05 09:35:23
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 252 ms
11,136 KB
testcase_04 AC 253 ms
11,008 KB
testcase_05 AC 50 ms
6,820 KB
testcase_06 AC 34 ms
6,816 KB
testcase_07 AC 168 ms
9,856 KB
testcase_08 AC 118 ms
9,984 KB
testcase_09 AC 66 ms
6,816 KB
testcase_10 AC 190 ms
9,216 KB
testcase_11 AC 179 ms
10,496 KB
testcase_12 AC 109 ms
8,704 KB
testcase_13 AC 32 ms
6,816 KB
testcase_14 AC 163 ms
10,112 KB
testcase_15 AC 46 ms
6,820 KB
testcase_16 AC 144 ms
8,832 KB
testcase_17 AC 115 ms
7,424 KB
testcase_18 AC 111 ms
6,912 KB
testcase_19 AC 145 ms
9,984 KB
testcase_20 AC 101 ms
7,552 KB
testcase_21 AC 92 ms
8,064 KB
testcase_22 AC 162 ms
8,832 KB
testcase_23 AC 16 ms
6,816 KB
testcase_24 AC 126 ms
9,344 KB
testcase_25 AC 167 ms
11,136 KB
testcase_26 AC 95 ms
11,008 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 182 ms
11,008 KB
testcase_29 AC 321 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

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 dp [200000][2][2][3][8];
int main(){
	cin >> A >> B;


	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,8) {
						ll lim = (j ? 9 : B[i] - '0');

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

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

	n = A.length();
	REP(i,n + 1) {
		REP(j,2) {
			REP(k,2) {
				REP(l,3) {
					REP(m,8) {
						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,8) {
						ll lim = (j ? 9 : A[i] - '0');

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

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

	return 0;
}
0