結果
問題 | No.189 SUPER HAPPY DAY |
ユーザー | ja14378 |
提出日時 | 2021-08-12 08:16:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,262 bytes |
コンパイル時間 | 1,321 ms |
コンパイル使用メモリ | 114,568 KB |
実行使用メモリ | 9,448 KB |
最終ジャッジ日時 | 2024-10-01 10:43:39 |
合計ジャッジ時間 | 2,305 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
9,232 KB |
testcase_01 | AC | 4 ms
9,204 KB |
testcase_02 | AC | 4 ms
9,276 KB |
testcase_03 | AC | 6 ms
9,272 KB |
testcase_04 | AC | 5 ms
9,368 KB |
testcase_05 | AC | 5 ms
9,268 KB |
testcase_06 | AC | 5 ms
9,428 KB |
testcase_07 | AC | 5 ms
9,132 KB |
testcase_08 | AC | 5 ms
9,280 KB |
testcase_09 | AC | 5 ms
9,320 KB |
testcase_10 | AC | 5 ms
9,308 KB |
testcase_11 | AC | 5 ms
9,276 KB |
testcase_12 | AC | 5 ms
9,432 KB |
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 | AC | 16 ms
9,384 KB |
testcase_24 | AC | 16 ms
9,256 KB |
testcase_25 | WA | - |
ソースコード
#include <iostream> #include <cmath> #include <string> #include <algorithm> #include <functional> #include <queue> #include <vector> #include <map> #include <set> #include <tuple> #include <cassert> #include <bitset> #include <tuple> #include <stack> #include<cstring> using ll = long long; #define MOD 1000000007 #define Mod 998244353 #define MAX 1000000000 #define INF 10000000000000 using namespace std; ll dp[205][2][1805]; ll mod = 1000000009; vector<ll> solve(string S) { vector<ll> res(1805, 0); int L = (int)S.size(); for (int i = 0; i < L; i++) { int N = S[i]-'0'; for (int j = 0; j < 2; j++) { for (int k = 0; k < 1805; k++) { for (int d = 0; d <= (j ? 9 : N); d++) { if (k >= d) dp[i+1][j || (d < N)][k] += dp[i][j][k-d]; } } } } for (int i = 1; i < 1805; i++) res[i] = (dp[L][0][i]+dp[L][1][i])%mod; return res; } int main() { string M, D; cin >> M >> D; dp[0][0][0] = 1; auto KM = solve(M); memset(dp, 0, sizeof(dp)); dp[0][0][0] = 1; auto KD = solve(D); ll ans = 0; for (int i = 1; i < 1805; i++) { ans += (KM[i]*KD[i])%mod; ans %= mod; } cout << ans << endl; }