結果

問題 No.372 It's automatic
ユーザー しらっ亭しらっ亭
提出日時 2016-05-13 23:58:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,395 bytes
コンパイル時間 1,479 ms
コンパイル使用メモリ 165,232 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-15 17:28:48
合計ジャッジ時間 14,465 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 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 #

// TLE するだろうなぁ...
#include <bits/stdc++.h>
using namespace std;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FORR(x,arr) for(auto&& x:arr)
#define FOR(i,a,b) for (int i = (a); i < (b); i++)
#define RFOR(i,a,b) for (int i = (b)-1; i >= (a); i--)
#define REP(i,n) for (int i = 0; i < (n); i++)
#define RREP(i,n) for (int i = (n)-1; i >= 0; i--)
#define ALL(x) (x).begin(), (x).end()
#define BIT(n) (1LL<<(n))
#define SZ(x) ((int)(x).size())
typedef long long ll;
// -------------------------------------

const long long mod = 1000000007;

string S;
int M;
int N;

int dp[2][20000];

long long powMod(long long x, long long y) {
  long long r = 1, a = x % M;
  while (y) {
    if (y & 1) r = (r * a) % M;
    a = (a * a) % M;
    y /= 2;
  }
  return r;
}

void Main() {
  cin >> S >> M;

  N = SZ(S);
  dp[0][0] = 1;
  REP(i, N) {

    int x = i % 2;
    int y = (i + 1) % 2;

    REP(i, M) dp[y][i] = dp[x][i];

    int d = S[N-i-1] - '0';
    //REP(z, M) _P("dp[%d][%d]: %d\n", x, z, dp[x][z]);
    if (d == 0) {
      dp[y][0] += 1;
      dp[y][0] %= mod;
    }
    else {
      int m = (powMod(10, N) * d) % M;
      REP(j, M) {
        (dp[y][(j + m) % M] += dp[x][j]) %= mod;
      }
    }
    //REP(z, M) _P("dp[%d][%d]: %d\n", y, z, dp[y][z]);
  }

  _P("%d\n", dp[N % 2][0] - 1);

}
int main() { cin.tie(0); ios::sync_with_stdio(false); Main(); return 0; }
0