結果
問題 | No.260 世界のなんとか3 |
ユーザー | Tomoya |
提出日時 | 2019-02-05 23:51:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 112 ms / 2,000 ms |
コード長 | 2,917 bytes |
コンパイル時間 | 813 ms |
コンパイル使用メモリ | 90,004 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-10 23:19:47 |
合計ジャッジ時間 | 2,972 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 89 ms
10,880 KB |
testcase_04 | AC | 89 ms
10,880 KB |
testcase_05 | AC | 19 ms
6,144 KB |
testcase_06 | AC | 13 ms
5,376 KB |
testcase_07 | AC | 61 ms
9,728 KB |
testcase_08 | AC | 42 ms
9,728 KB |
testcase_09 | AC | 25 ms
6,528 KB |
testcase_10 | AC | 68 ms
9,088 KB |
testcase_11 | AC | 63 ms
10,240 KB |
testcase_12 | AC | 39 ms
8,576 KB |
testcase_13 | AC | 12 ms
5,376 KB |
testcase_14 | AC | 58 ms
9,856 KB |
testcase_15 | AC | 16 ms
5,376 KB |
testcase_16 | AC | 52 ms
8,576 KB |
testcase_17 | AC | 40 ms
7,296 KB |
testcase_18 | AC | 39 ms
6,784 KB |
testcase_19 | AC | 50 ms
9,984 KB |
testcase_20 | AC | 36 ms
7,424 KB |
testcase_21 | AC | 32 ms
7,808 KB |
testcase_22 | AC | 57 ms
8,832 KB |
testcase_23 | AC | 7 ms
5,376 KB |
testcase_24 | AC | 44 ms
9,344 KB |
testcase_25 | AC | 58 ms
10,880 KB |
testcase_26 | AC | 34 ms
10,880 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 63 ms
10,752 KB |
testcase_29 | AC | 112 ms
10,880 KB |
ソースコード
//#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[20005][2][2][3][8]; ll calc(string s, bool f){ ll n = s.size(); 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 : s[i]-'0'); 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||!l)&& m) (ans+=dp[n][j][k][l][m])%=MOD; } return ans; } //cout << (MOD + calc(b) - calc(a)) % MOD << endl; int main(void){ cin.tie(0); ios::sync_with_stdio(false); string a, b, s; cin >> a >> b; s = b; ll n = s.size(); 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 : s[i]-'0'); 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||!l)&& m) (ans+=dp[n][j][k][l][m])%=MOD; } s = a; n = s.size(); 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 : s[i]-'0'); 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; } } } } } 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; }