結果

問題 No.372 It's automatic
ユーザー ikdikd
提出日時 2018-10-05 07:50:26
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 748 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 85,868 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-03 21:07:47
合計ジャッジ時間 16,199 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
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 -
権限があれば一括ダウンロードができます

ソースコード

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];
      (nex[(j * 10 + d) % m] += dp[j]) %= mod;
    }
    if (d == 0) {
      zero++;
    } 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