結果
問題 | No.372 It's automatic |
ユーザー | togari_takamoto |
提出日時 | 2016-05-14 00:40:27 |
言語 | C++11 (gcc 11.4.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 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 | 3 ms
6,816 KB |
testcase_17 | AC | 3 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 3 ms
6,820 KB |
testcase_21 | AC | 153 ms
41,984 KB |
testcase_22 | AC | 152 ms
42,496 KB |
testcase_23 | AC | 155 ms
42,112 KB |
testcase_24 | AC | 155 ms
42,240 KB |
testcase_25 | AC | 154 ms
42,112 KB |
ソースコード
#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; }