結果

問題 No.372 It's automatic
ユーザー ikd
提出日時 2018-10-05 08:08:12
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 1,518 ms / 6,000 ms
コード長 770 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 100,076 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-13 01:49:14
合計ジャッジ時間 19,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  auto s = readln.chomp.to!(char[]);
  int m;
  rd(m);
  const int mod = 10 ^^ 9 + 7;

  int zero = 0;
  auto dp = new int[](m);
  foreach (i; 0 .. s.length) {
    auto nex = new int[](m);
    auto d = s[i] - '0';
    foreach (j; 0 .. m) {
      (nex[j] += dp[j]) %= mod;
      (nex[(j * 10 + d) % m] += dp[j]) %= mod;
    }
    if (d == 0) {
      (zero += 1) %= mod;
    } else {
      (nex[d % m] += 1) %= mod;
    }
    dp.swap(nex);
  }
  writeln((dp[0] + zero) % mod);
}

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