結果

問題 No.260 世界のなんとか3
ユーザー ikdikd
提出日時 2018-10-04 19:55:38
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,756 bytes
コンパイル時間 647 ms
コンパイル使用メモリ 98,452 KB
実行使用メモリ 41,824 KB
最終ジャッジ日時 2024-06-13 01:42:53
合計ジャッジ時間 6,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 66 ms
10,300 KB
testcase_06 AC 42 ms
7,360 KB
testcase_07 AC 232 ms
28,712 KB
testcase_08 AC 161 ms
22,584 KB
testcase_09 AC 86 ms
14,068 KB
testcase_10 AC 268 ms
31,552 KB
testcase_11 AC 246 ms
30,444 KB
testcase_12 AC 151 ms
20,080 KB
testcase_13 AC 39 ms
6,944 KB
testcase_14 WA -
testcase_15 AC 56 ms
9,896 KB
testcase_16 AC 199 ms
25,260 KB
testcase_17 AC 153 ms
19,540 KB
testcase_18 WA -
testcase_19 AC 199 ms
25,276 KB
testcase_20 AC 141 ms
17,972 KB
testcase_21 WA -
testcase_22 AC 221 ms
27,488 KB
testcase_23 AC 21 ms
6,944 KB
testcase_24 AC 172 ms
23,500 KB
testcase_25 AC 180 ms
24,256 KB
testcase_26 AC 171 ms
24,316 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 340 ms
39,960 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

void main() {
  import std.stdio, std.string, std.conv, std.algorithm;

  auto args = readln.split.to!(char[][]);
  const long MOD = 10 ^^ 9 + 7;
  long solve(char[] n) {
    auto memo = new long[][][][][](n.length + 1, 2, 2, 3, 8);
    afill(memo, -1L);
    long f(size_t i, bool less, bool ok, int mod3, int mod8) {
      if (memo[i][less][ok][mod3][mod8] >= 0) {
        return memo[i][less][ok][mod3][mod8];
      }
      if (i == n.length) {
        return (ok || mod3 == 0) && (mod8 > 0);
      } else {
        auto digit = less ? 9 : n[i] - '0';
        long ret = 0;
        for (int d = 0; d <= digit; d++) {
          auto l = less || (d < digit);
          auto o = ok || (d == 3);
          auto m3 = (mod3 * 10 + d) % 3;
          auto m8 = (mod8 * 10 + d) % 8;
          (ret += f(i + 1, l, o, m3, m8)) %= MOD;
        }
        return memo[i][less][ok][mod3][mod8] = ret;
      }
    }

    return f(0, 0, 0, 0, 0);
  }

  bool yes(char[] n) {
    auto m8 = reduce!((res, ch) => (res + (ch - '0')) % 8)(0, n);
    if (m8 == 0) {
      return false;
    } else if (n.count('3') > 0) {
      return true;
    } else {
      auto m3 = reduce!((res, ch) => (res + (ch - '0')) % 3)(0, n);
      return m3 == 0;
    }
  }

  auto res = (solve(args[1]) - solve(args[0]) + MOD) % MOD;
  writeln((res + yes(args[0])) % MOD);
}

void afill(Range, Type)(ref Range r, Type v) {
  static if (is(typeof(r) == Type[])) {
    foreach (ref e; r) {
      e = v;
    }
  } else {
    foreach (ref _r; r) {
      afill(_r, v);
    }
  }
}

void rd(T...)(ref T x) {
  import std.stdio : readln;
  import std.string : split;
  import std.conv : to;

  auto l = readln.split;
  assert(l.length == x.length);
  foreach (i, ref e; x)
    e = l[i].to!(typeof(e));
}
0