結果

問題 No.189 SUPER HAPPY DAY
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-05 20:42:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 605 ms / 5,000 ms
コード長 899 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 147,664 KB
最終ジャッジ日時 2024-11-06 06:30:30
合計ジャッジ時間 7,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
74,544 KB
testcase_01 AC 94 ms
79,644 KB
testcase_02 AC 72 ms
75,652 KB
testcase_03 AC 89 ms
77,516 KB
testcase_04 AC 87 ms
77,624 KB
testcase_05 AC 89 ms
77,584 KB
testcase_06 AC 89 ms
77,844 KB
testcase_07 AC 93 ms
77,788 KB
testcase_08 AC 91 ms
77,616 KB
testcase_09 AC 91 ms
77,928 KB
testcase_10 AC 89 ms
78,040 KB
testcase_11 AC 91 ms
77,580 KB
testcase_12 AC 88 ms
77,492 KB
testcase_13 AC 354 ms
110,136 KB
testcase_14 AC 432 ms
119,036 KB
testcase_15 AC 383 ms
112,744 KB
testcase_16 AC 371 ms
114,104 KB
testcase_17 AC 454 ms
120,568 KB
testcase_18 AC 348 ms
111,296 KB
testcase_19 AC 507 ms
127,620 KB
testcase_20 AC 257 ms
96,000 KB
testcase_21 AC 282 ms
100,316 KB
testcase_22 AC 129 ms
82,584 KB
testcase_23 AC 332 ms
111,752 KB
testcase_24 AC 348 ms
112,396 KB
testcase_25 AC 605 ms
147,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 9
U = 2020


def F(A):
    N = len(A)
    dp = [[[0] * 2 for _ in range(U + 1)] for _ in range(N + 1)]
    dp[0][0][0] = 1
    for i, nd in enumerate(A):
        nd = int(nd)
        for j in range(U):
            for k in range(2):
                for d in range(10):
                    ni = i + 1
                    nj = j + d
                    nk = k
                    if nj > U:
                        break
                    if nk == 0:
                        if d > nd:
                            continue
                        if d < nd:
                            nk = 1
                    dp[ni][nj][nk] += dp[i][j][k]
                    dp[ni][nj][nk] %= mod
    res = [(dp[N][i][0] + dp[N][i][1]) % mod for i in range(1, U)]
    return res


M, D = input().split()
M = F(M)
D = F(D)
ans = 0
for m, d in zip(M, D):
    ans += m * d
    ans %= mod
print(ans)
0