結果

問題 No.189 SUPER HAPPY DAY
ユーザー 👑 rin204rin204
提出日時 2022-11-03 01:09:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 679 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 70,556 KB
最終ジャッジ日時 2024-07-17 12:43:39
合計ジャッジ時間 2,655 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,192 KB
testcase_01 AC 42 ms
59,260 KB
testcase_02 AC 37 ms
53,176 KB
testcase_03 AC 41 ms
59,096 KB
testcase_04 AC 42 ms
58,208 KB
testcase_05 AC 43 ms
58,704 KB
testcase_06 AC 41 ms
59,568 KB
testcase_07 AC 42 ms
60,552 KB
testcase_08 AC 41 ms
59,260 KB
testcase_09 AC 43 ms
59,320 KB
testcase_10 AC 42 ms
58,448 KB
testcase_11 AC 42 ms
58,972 KB
testcase_12 AC 41 ms
59,580 KB
testcase_13 AC 53 ms
64,592 KB
testcase_14 AC 56 ms
66,448 KB
testcase_15 AC 54 ms
63,928 KB
testcase_16 AC 56 ms
65,008 KB
testcase_17 AC 58 ms
64,748 KB
testcase_18 AC 54 ms
64,052 KB
testcase_19 AC 63 ms
67,184 KB
testcase_20 AC 46 ms
60,992 KB
testcase_21 AC 49 ms
61,676 KB
testcase_22 AC 43 ms
59,164 KB
testcase_23 AC 55 ms
63,992 KB
testcase_24 AC 55 ms
63,984 KB
testcase_25 AC 74 ms
70,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 1000000009

m, d = input().split()

def digit_sum(S):
    n = len(S)
    dp = [0] * (9 * n + 1)
    s = int(S[0])
    eq = s
    for i in range(1, s):
        dp[i] = 1

    for ii, s in enumerate(S[1:], 1):
        s = int(s)
        ndp = [0] * (9 * n + 1)
        for i in range(10):
            for j in range(9 * ii + 1):
                ndp[i + j] += dp[j]
                ndp[i + j] %= MOD
        
        for i in range(1, 10):
            ndp[i] += 1

        for i in range(s):
            ndp[eq + i] += 1

        eq += s
        dp = ndp

    dp[eq] += 1
    return dp

A = digit_sum(m)
B = digit_sum(d)
ans = sum(a * b for a, b in zip(A, B)) % MOD
print(ans)
0