結果

問題 No.189 SUPER HAPPY DAY
ユーザー H20H20
提出日時 2021-02-25 10:26:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 5,000 ms
コード長 630 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 135,496 KB
最終ジャッジ日時 2024-09-25 09:03:59
合計ジャッジ時間 7,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
69,328 KB
testcase_01 AC 78 ms
76,368 KB
testcase_02 AC 58 ms
68,808 KB
testcase_03 AC 68 ms
76,224 KB
testcase_04 AC 70 ms
76,324 KB
testcase_05 AC 71 ms
76,104 KB
testcase_06 AC 78 ms
76,580 KB
testcase_07 AC 77 ms
76,492 KB
testcase_08 AC 73 ms
76,504 KB
testcase_09 AC 76 ms
76,396 KB
testcase_10 AC 73 ms
76,552 KB
testcase_11 AC 75 ms
76,508 KB
testcase_12 AC 71 ms
76,312 KB
testcase_13 AC 352 ms
93,660 KB
testcase_14 AC 451 ms
100,900 KB
testcase_15 AC 404 ms
100,996 KB
testcase_16 AC 440 ms
104,568 KB
testcase_17 AC 471 ms
106,980 KB
testcase_18 AC 381 ms
99,276 KB
testcase_19 AC 550 ms
110,028 KB
testcase_20 AC 234 ms
86,596 KB
testcase_21 AC 269 ms
86,188 KB
testcase_22 AC 100 ms
77,392 KB
testcase_23 AC 393 ms
105,140 KB
testcase_24 AC 383 ms
105,452 KB
testcase_25 AC 726 ms
135,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

M,D = input().split()
mod = 10**9+9
def count(a):
    n = len(a)
    dp=[[[0] * 1801 for i in range(2)] for j in range(n+1)]
    dp[0][0][0] = 1

    for i, less, ketawa in product(range(n), (0,1), range(1801)):
        max_d = 9 if less else int(a[i])
        for d in range(max_d+1):
            less_ = less or d < max_d
            ketawa_ = ketawa + d
            if ketawa_<=1800:
                dp[i + 1][less_][ketawa_] += dp[i][less][ketawa]

    return dp[n]

ML = count(M)
DL = count(D)

ans = 0
for i in range(1,1801):
    ans += (ML[0][i]+ML[1][i])*(DL[0][i]+DL[1][i])

print(ans%mod)
0