結果

問題 No.372 It's automatic
ユーザー togari_takamototogari_takamoto
提出日時 2016-05-14 00:40:27
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 991 bytes
コンパイル時間 1,553 ms
コンパイル使用メモリ 164,244 KB
実行使用メモリ 781,696 KB
最終ジャッジ日時 2024-04-15 18:31:42
合計ジャッジ時間 43,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 161 ms
42,112 KB
testcase_22 AC 162 ms
42,496 KB
testcase_23 AC 162 ms
42,240 KB
testcase_24 AC 161 ms
42,368 KB
testcase_25 AC 163 ms
42,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
 
using ll = long long; using ld = long double; using ull = unsigned long long; using uint = unsigned int;
using vi  = vector<int>; using vb  = vector<bool>; using vd  = vector<double>; using vl  = vector<ll>;
using vvi = vector<vi>;  using vvb = vector<vb>;   using vvd = vector<vd>;     using vvl = vector<vl>;
 
#define REP(i,n) for(ll i=0; i<(n); ++i)
#define FOR(i,b,n) for(ll i=(b); i<(n); ++i)
#define ALL(v) (v).begin(), (v).end()
#define TEN(x) ((ll)1e##x)
 
int main() {
	cin.tie(0);
	ios_base::sync_with_stdio(false);
	cout << fixed << setprecision(30);
	string s; ll m; cin >> s >> m;

	int mod = TEN(9) + 7;
	vvi dp(s.size()+1, vi(m, 0)); // dp[s.size()+1][m]
	REP(i, s.size()) {
		if (s[i] != '0') (dp[i + 1][(s[i] - '0') % m] += 1) %= mod;
		REP(j, m) {
			(dp[i + 1][(j * 10 + (s[i] - '0')) % m] += dp[i][j]) %= mod;
			(dp[i + 1][j] += dp[i][j]) %= mod;
		}
	}
	cout << dp[s.size()][0] + count(ALL(s), '0') << endl;
	return 0;
}
0