結果

問題 No.260 世界のなんとか3
ユーザー LuzhiledLuzhiled
提出日時 2016-10-24 04:53:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 2,480 ms
コンパイル使用メモリ 160,736 KB
実行使用メモリ 20,456 KB
最終ジャッジ日時 2024-05-03 05:20:02
合計ジャッジ時間 3,475 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
19,156 KB
testcase_01 AC 7 ms
19,212 KB
testcase_02 AC 7 ms
19,220 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 6 ms
19,232 KB
testcase_28 AC 9 ms
20,336 KB
testcase_29 AC 8 ms
20,132 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);
  }

  return ret;
}

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

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

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

0