結果

問題 No.315 世界のなんとか3.5
ユーザー krotonkroton
提出日時 2015-09-20 20:43:28
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,454 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 57,080 KB
実行使用メモリ 93,312 KB
最終ジャッジ日時 2024-07-19 08:23:39
合計ジャッジ時間 26,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
78,336 KB
testcase_01 AC 68 ms
78,464 KB
testcase_02 AC 65 ms
78,464 KB
testcase_03 AC 66 ms
78,336 KB
testcase_04 AC 66 ms
78,208 KB
testcase_05 AC 66 ms
78,336 KB
testcase_06 AC 66 ms
78,464 KB
testcase_07 AC 64 ms
78,336 KB
testcase_08 AC 65 ms
78,336 KB
testcase_09 AC 68 ms
78,464 KB
testcase_10 AC 67 ms
78,464 KB
testcase_11 AC 66 ms
78,464 KB
testcase_12 AC 620 ms
92,672 KB
testcase_13 AC 615 ms
92,672 KB
testcase_14 AC 1,171 ms
92,672 KB
testcase_15 AC 1,148 ms
92,728 KB
testcase_16 AC 1,153 ms
92,544 KB
testcase_17 AC 1,159 ms
92,672 KB
testcase_18 AC 617 ms
92,800 KB
testcase_19 AC 610 ms
92,800 KB
testcase_20 AC 619 ms
92,672 KB
testcase_21 AC 637 ms
92,800 KB
testcase_22 AC 1,135 ms
92,704 KB
testcase_23 AC 1,163 ms
92,672 KB
testcase_24 AC 1,139 ms
92,600 KB
testcase_25 AC 1,136 ms
92,544 KB
testcase_26 AC 1,140 ms
92,832 KB
testcase_27 AC 1,133 ms
92,800 KB
testcase_28 AC 1,071 ms
92,828 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,049 ms
93,056 KB
testcase_35 AC 1,120 ms
93,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstring>
using namespace std;
typedef long long ll;
const int MOD = 1e9 + 7;

string dig;
int border;
bool allowEqual;

int dp[100010][3][8][2][2][2];
int solve(int k, int mod3, int mod8, bool has3, bool less, bool suf0){
  if(k >= dig.size()){
    if(!less && !allowEqual){
      return 0;
    }
    int aho = (mod3 == 0) || has3;
    int haji = (mod8 == 0) && suf0;
    return aho && !haji;
  }
  if(dp[k][mod3][mod8][has3][less][suf0] != -1){
    return dp[k][mod3][mod8][has3][less][suf0];
  }
  int res = 0;
  for(int i=0;i<10;i++){
    int d = dig[k] - '0';
    if(less || i <= d){
      bool nsuf0 = suf0;
      int nmod8 = mod8;
      if(k >= border){
        nsuf0 &= i == 0;
      } else {
        nmod8 = (nmod8 * 10 + i) % 8;
      }
      res += solve(k + 1, (mod3 * 10 + i) % 3, nmod8, has3 || (i == 3), less || (i < d), nsuf0);
      if(res >= MOD){
        res -= MOD;
      }
    }
  }
  return dp[k][mod3][mod8][has3][less][suf0] = res;
}

int solve(string s, int p, bool eq){
  dig = s;
  border = dig.size() - p;
  allowEqual = eq;
  memset(dp, -1, sizeof(dp));
  return solve(0, 0, 0, false, false, true);
}

int main(){
  string A, B;
  cin >> A >> B;

  int P;
  cin >> P;

  int p = 0;
  while(P > 0){
    ++p;
    P /= 10;
  }

  int resA = solve(A, p - 1, false);
  int resB = solve(B, p - 1, true);

  int res = resB - resA;
  if(res < 0){
    res += MOD;
  }

  cout << res << endl;
  return 0;
}
0