結果
問題 | No.260 世界のなんとか3 |
ユーザー | Tomoya |
提出日時 | 2019-02-05 23:22:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,871 bytes |
コンパイル時間 | 799 ms |
コンパイル使用メモリ | 84,896 KB |
実行使用メモリ | 78,516 KB |
最終ジャッジ日時 | 2024-06-10 23:18:21 |
合計ジャッジ時間 | 4,367 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
ソースコード
//#include <bits/stdc++.h> #include <iostream> #include <complex> #include <sstream> #include <string> #include <algorithm> #include <deque> #include <list> #include <map> #include <numeric> #include <queue> #include <vector> #include <set> #include <limits> #include <cstdio> #include <cctype> #include <cmath> #include <cstring> #include <cstdlib> #include <ctime> #include <climits> #define REP(i, n) for(int i = 0; i < (int)(n); i++) #define FOR(i, j, k) for(int i = (int)(j); i < (int)(k); ++i) #define ROF(i, j, k) for(int i = (int)(j); i >= (int)(k); --i) #define FORLL(i, n, m) for(long long i = n; i < (long long)(m); i++) #define SORT(v, n) sort(v, v+n) #define REVERSE(v) reverse((v).begin(), (v).end()) using namespace std; using ll = long long; const ll MOD=1000000007LL; typedef pair<int, int> P; ll ADD(ll x, ll y) { return (x+y) % MOD; } ll SUB(ll x, ll y) { return (x-y+MOD) % MOD; } ll MUL(ll x, ll y) { return x*y % MOD; } ll POW(ll x, ll e) { ll v=1; for(; e; x=MUL(x,x), e>>=1) if (e&1) v = MUL(v,x); return v; } ll DIV(ll x, ll y) { /*assert(y%MOD!=0);*/ return MUL(x, POW(y, MOD-2)); } ll nl, nm; //i桁目, smaller, 3がつく, mod 3, mod 8 ll dp[100001][2][2][3][8]; ll calc(string s){ memset(dp, 0, sizeof(dp)); ll n = s.size(); dp[0][0][0][0][0] = 1; REP(i, n) { ll x = s[i]-'0'; REP(j, 2){ REP(k, 2){ REP(l, 3){ REP(m, 8){ ll lim = (j ? 9 : x); REP(d, lim+1) (dp[i+1][j||(d<lim)][k|(d == 3)][(l*10+d)%3][(m*10+d)%8] += dp[i][j][k][l][m]) %= MOD; } } } } } ll ans = 0LL; REP(j, 2) REP(k, 2) REP(l, 3) REP(m, 8) { if((k == 1 || l == 0) && m != 0) (ans+=dp[n][j][k][l][m])%=MOD; } return ans; } int main(void){ cin.tie(0); ios::sync_with_stdio(false); string a, b; cin >> a >> b; cout << (MOD + calc(b) - calc(a)) % MOD << endl; return 0; }