結果
| 問題 |
No.372 It's automatic
|
| コンテスト | |
| ユーザー |
togari_takamoto
|
| 提出日時 | 2016-05-14 00:40:27 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 991 bytes |
| コンパイル時間 | 1,280 ms |
| コンパイル使用メモリ | 163,884 KB |
| 実行使用メモリ | 781,696 KB |
| 最終ジャッジ日時 | 2024-10-05 20:29:00 |
| 合計ジャッジ時間 | 41,269 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 MLE * 12 |
ソースコード
#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;
}
togari_takamoto