結果

問題 No.189 SUPER HAPPY DAY
ユーザー ja14378ja14378
提出日時 2021-08-12 08:19:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 1,315 bytes
コンパイル時間 1,308 ms
コンパイル使用メモリ 115,044 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-10-01 10:46:28
合計ジャッジ時間 2,894 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,228 KB
testcase_01 AC 8 ms
9,260 KB
testcase_02 AC 4 ms
9,248 KB
testcase_03 AC 8 ms
9,236 KB
testcase_04 AC 7 ms
9,140 KB
testcase_05 AC 9 ms
9,340 KB
testcase_06 AC 8 ms
9,168 KB
testcase_07 AC 8 ms
9,184 KB
testcase_08 AC 7 ms
9,256 KB
testcase_09 AC 8 ms
9,228 KB
testcase_10 AC 8 ms
9,092 KB
testcase_11 AC 8 ms
9,320 KB
testcase_12 AC 8 ms
9,264 KB
testcase_13 AC 75 ms
9,112 KB
testcase_14 AC 96 ms
9,344 KB
testcase_15 AC 79 ms
9,200 KB
testcase_16 AC 80 ms
9,252 KB
testcase_17 AC 97 ms
9,216 KB
testcase_18 AC 76 ms
9,220 KB
testcase_19 AC 116 ms
9,344 KB
testcase_20 AC 47 ms
9,216 KB
testcase_21 AC 54 ms
9,184 KB
testcase_22 AC 17 ms
9,232 KB
testcase_23 AC 57 ms
9,260 KB
testcase_24 AC 61 ms
9,344 KB
testcase_25 AC 113 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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];
                    dp[i+1][j || (d < N)][k] %= mod;
                }
            }
        }
    }
    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;
}
0