結果

問題 No.260 世界のなんとか3
ユーザー oevloevl
提出日時 2019-03-12 12:30:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 1,443 ms
コンパイル使用メモリ 170,608 KB
実行使用メモリ 11,068 KB
最終ジャッジ日時 2024-06-23 15:44:50
合計ジャッジ時間 3,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,952 KB
testcase_01 AC 4 ms
10,832 KB
testcase_02 AC 5 ms
10,860 KB
testcase_03 AC 105 ms
11,028 KB
testcase_04 AC 106 ms
10,976 KB
testcase_05 AC 25 ms
10,940 KB
testcase_06 AC 19 ms
10,944 KB
testcase_07 AC 77 ms
10,964 KB
testcase_08 AC 54 ms
10,988 KB
testcase_09 AC 31 ms
10,956 KB
testcase_10 AC 86 ms
10,952 KB
testcase_11 AC 78 ms
10,848 KB
testcase_12 AC 48 ms
11,068 KB
testcase_13 AC 16 ms
11,012 KB
testcase_14 AC 74 ms
11,068 KB
testcase_15 AC 23 ms
10,888 KB
testcase_16 AC 67 ms
10,816 KB
testcase_17 AC 49 ms
10,988 KB
testcase_18 AC 50 ms
10,900 KB
testcase_19 AC 63 ms
10,832 KB
testcase_20 AC 43 ms
10,840 KB
testcase_21 AC 41 ms
10,896 KB
testcase_22 AC 72 ms
10,816 KB
testcase_23 AC 11 ms
10,996 KB
testcase_24 AC 56 ms
10,992 KB
testcase_25 AC 73 ms
11,024 KB
testcase_26 AC 42 ms
10,904 KB
testcase_27 AC 6 ms
10,784 KB
testcase_28 AC 76 ms
10,852 KB
testcase_29 AC 141 ms
10,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < n; ++i)
typedef long long ll;
#define MOD 1000000007

template <class T> void add(T &a, T b) { a = (a + b) % MOD; }

ll solve(string S) {
  ll dp[10005][2][3][8][2] = {};
  dp[0][0][0][0][0] = 1;
  int len = S.size();
  rep(i, len) rep(j, 2) rep(k, 3) rep(l, 8) rep(m, 2) {
    int x = j ? 9 : S[i] - '0';
    rep(d, x + 1) {
      add(dp[i + 1][j || d < x][(k + d) % 3][(10 * l + d) % 8][m || d == 3],
          dp[i][j][k][l][m]);
    }
  }
  ll ans = 0;
  rep(j, 2) rep(k, 3) rep(l, 8) rep(m, 2) {
    if (l == 0)
      continue;
    if (k == 0 || m)
      add(ans, dp[len][j][k][l][m]);
  }
  return ans;
}

int main() {
  string A, B;
  cin >> A >> B;
  int a = A[A.size() - 1] - '0';
  A = A.substr(0, A.size() - 1);
  A += ('0' + a - 1);
  ll ans = solve(B) - solve(A) + MOD;
  ans %= MOD;
  cout << ans << endl;
  return 0;
}
0