結果

問題 No.260 世界のなんとか3
ユーザー LuzhiledLuzhiled
提出日時 2016-10-24 04:55:58
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 1,575 ms
コンパイル使用メモリ 160,092 KB
実行使用メモリ 20,456 KB
最終ジャッジ日時 2024-06-06 03:50:54
合計ジャッジ時間 3,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
19,072 KB
testcase_01 AC 8 ms
19,072 KB
testcase_02 AC 8 ms
19,064 KB
testcase_03 AC 67 ms
20,224 KB
testcase_04 AC 69 ms
20,352 KB
testcase_05 AC 29 ms
19,584 KB
testcase_06 AC 23 ms
19,456 KB
testcase_07 AC 59 ms
20,096 KB
testcase_08 AC 59 ms
20,096 KB
testcase_09 AC 34 ms
19,712 KB
testcase_10 AC 54 ms
20,088 KB
testcase_11 AC 61 ms
19,968 KB
testcase_12 AC 48 ms
19,968 KB
testcase_13 AC 16 ms
19,224 KB
testcase_14 AC 61 ms
20,096 KB
testcase_15 AC 20 ms
19,436 KB
testcase_16 AC 50 ms
19,840 KB
testcase_17 AC 40 ms
19,712 KB
testcase_18 AC 37 ms
19,708 KB
testcase_19 AC 60 ms
20,096 KB
testcase_20 AC 40 ms
19,712 KB
testcase_21 AC 43 ms
19,840 KB
testcase_22 AC 51 ms
20,084 KB
testcase_23 AC 12 ms
19,072 KB
testcase_24 AC 55 ms
20,096 KB
testcase_25 AC 68 ms
20,440 KB
testcase_26 AC 63 ms
20,456 KB
testcase_27 AC 8 ms
19,076 KB
testcase_28 AC 11 ms
20,248 KB
testcase_29 AC 11 ms
20,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long

const int mod = 1e9 + 7;

string a, b;

int dp[10101][2][2][2][25];

int dfs(int i=0, bool atight=true, bool btight=true, bool f=false, int sum=0)
{
  int &ret = dp[i][atight][btight][f][sum];

  if (ret != -1) return ret;
  if (i == a.size()){
    return (((sum % 8) != 0) && (f || (sum % 3) == 0));
  }

  int ax = a[i] - '0';
  int bx = b[i] - '0';

  int ar = (atight ? ax : 0);
  int br = (btight ? bx : 9);

  ret = 0;
  for (int j = ar; j <= br; j++){
    ret += dfs(i + 1, atight && j == ax, btight && j == bx, f || j == 3, (sum * 10 + j) % 24);
    ret %= mod;
  }

  return ret;
}

signed main()
{
  cin >> a >> b;

  while (a.size() < b.size()) a = "0" + a;

  memset(dp, -1, sizeof(dp));
  cout << dfs() << endl;
}

0