結果

問題 No.189 SUPER HAPPY DAY
ユーザー rlangevinrlangevin
提出日時 2023-09-05 00:03:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 5,000 ms
コード長 819 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 86,976 KB
最終ジャッジ日時 2024-06-22 21:16:34
合計ジャッジ時間 4,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,848 KB
testcase_01 AC 49 ms
68,480 KB
testcase_02 AC 42 ms
62,208 KB
testcase_03 AC 48 ms
67,456 KB
testcase_04 AC 48 ms
67,328 KB
testcase_05 AC 51 ms
67,852 KB
testcase_06 AC 51 ms
67,968 KB
testcase_07 AC 53 ms
68,736 KB
testcase_08 AC 55 ms
67,968 KB
testcase_09 AC 57 ms
68,608 KB
testcase_10 AC 50 ms
67,968 KB
testcase_11 AC 51 ms
68,608 KB
testcase_12 AC 50 ms
67,968 KB
testcase_13 AC 210 ms
78,976 KB
testcase_14 AC 248 ms
80,256 KB
testcase_15 AC 238 ms
80,768 KB
testcase_16 AC 262 ms
81,872 KB
testcase_17 AC 288 ms
81,536 KB
testcase_18 AC 234 ms
80,220 KB
testcase_19 AC 338 ms
82,740 KB
testcase_20 AC 142 ms
77,696 KB
testcase_21 AC 153 ms
77,440 KB
testcase_22 AC 71 ms
76,532 KB
testcase_23 AC 230 ms
80,348 KB
testcase_24 AC 233 ms
80,432 KB
testcase_25 AC 416 ms
86,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 2000


def f(S):
    pre0 = [0] * N
    pre1 = [0] * N
    pre0[0] = 1
    for s in S:
        dp0 = [0] * N
        dp1 = [0] * N
        for i in range(N):
            for j in range(10):
                if j == s:
                    if i - j >= 0:
                        dp0[i] += pre0[i - j]
                elif j < s:
                    if i - j >= 0:
                        dp1[i] += pre0[i - j]
                if i - j >= 0:
                    dp1[i] += pre1[i - j]
        dp0, pre0 = pre0, dp0
        dp1, pre1 = pre1, dp1

    L = [0] * N
    for i in range(N):
        L[i] = pre0[i] + pre1[i]

    return L


M, D = input().split()
M = [int(m) for m in M]
D = [int(d) for d in D]
ans = -1
mod = 10**9 + 9
A, B = f(M), f(D)
for i in range(N):
    ans += A[i] * B[i]
    ans %= mod

print(ans%mod)
0