結果
問題 | No.260 世界のなんとか3 |
ユーザー | ty70 |
提出日時 | 2016-10-10 18:33:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 196 ms / 2,000 ms |
コード長 | 1,727 bytes |
コンパイル時間 | 1,496 ms |
コンパイル使用メモリ | 164,072 KB |
実行使用メモリ | 11,056 KB |
最終ジャッジ日時 | 2024-05-01 18:58:17 |
合計ジャッジ時間 | 4,644 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
10,688 KB |
testcase_01 | AC | 6 ms
10,832 KB |
testcase_02 | AC | 5 ms
10,708 KB |
testcase_03 | AC | 152 ms
10,936 KB |
testcase_04 | AC | 154 ms
10,748 KB |
testcase_05 | AC | 33 ms
10,932 KB |
testcase_06 | AC | 24 ms
10,868 KB |
testcase_07 | AC | 105 ms
10,868 KB |
testcase_08 | AC | 74 ms
10,684 KB |
testcase_09 | AC | 43 ms
10,856 KB |
testcase_10 | AC | 119 ms
10,964 KB |
testcase_11 | AC | 111 ms
11,016 KB |
testcase_12 | AC | 69 ms
10,936 KB |
testcase_13 | AC | 23 ms
10,944 KB |
testcase_14 | AC | 100 ms
10,984 KB |
testcase_15 | AC | 31 ms
10,792 KB |
testcase_16 | AC | 90 ms
10,748 KB |
testcase_17 | AC | 73 ms
10,852 KB |
testcase_18 | AC | 69 ms
10,968 KB |
testcase_19 | AC | 88 ms
10,872 KB |
testcase_20 | AC | 62 ms
11,000 KB |
testcase_21 | AC | 57 ms
10,796 KB |
testcase_22 | AC | 102 ms
11,056 KB |
testcase_23 | AC | 13 ms
10,920 KB |
testcase_24 | AC | 79 ms
11,000 KB |
testcase_25 | AC | 102 ms
10,916 KB |
testcase_26 | AC | 57 ms
10,968 KB |
testcase_27 | AC | 5 ms
10,780 KB |
testcase_28 | AC | 153 ms
10,776 KB |
testcase_29 | AC | 196 ms
11,036 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) #define ALL(A) A.begin(), A.end() using namespace std; typedef long long ll; typedef pair<int, int> P; const ll mod = 1000000007LL; ll dp[10004][2][2][3][8]; // dp[i桁目][N未満であることが確定しているか 0 -> していない 1 -> している][3 の付く数字か 0 -> そうでない 1 -> そう][mod 3 の値][mod 8 の値] ll solve (string s){ memset (dp, 0LL, sizeof(dp)); int n = s.length(); dp[0][0][0][0][0] = 1LL; for (int i = 0; i < n; ++i){ int D = (int)(s[i] - '0'); for (int j = 0; j < 2; ++j){ for (int k = 0; k < 2; ++k){ for (int l = 0; l < 3; ++l){ for (int m = 0; m < 8; ++m){ for (int d = 0; d < (j ? 10 : D + 1); ++d){ ll & ans = dp[i + 1][j || d < D][k || (d == 3)][(l + d) % 3][(2 * m + d) % 8]; ans = (ans + dp[i][j][k][l][m]) % mod; } // end for } // end for } // end for } // end for } // end for } // end for ll res = 0LL; for (int j = 0; j < 2; ++j){ for (int k = 0;k < 2; ++k){ for (int l = 0; l < 3; ++l){ for (int m = 0; m < 8; ++m){ if ((k == 1 || l == 0) && (m != 0)) res = (res + dp[n][j][k][l][m]) % mod; } // end for } // end for } // end for } // end for return res; } string minus_one(string s){ reverse(ALL(s)); for (int i = 0; i < s.length(); ++i){ if (s[i] != '0'){ --s[i]; break; }else{ s[i] = '9'; } // end if } // end for if (s.length() > 1 && s[s.length() - 1] == '0') s = s.substr(0, s.length() - 1); reverse(ALL(s)); return s; } int main(){ string A, B; cin >> A >> B; A = minus_one(A); ll res = (solve(B) - solve(A) + mod) % mod; cout << res << endl; return 0; }