結果

問題 No.189 SUPER HAPPY DAY
ユーザー H20H20
提出日時 2021-04-29 18:18:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 749 ms / 5,000 ms
コード長 747 bytes
コンパイル時間 826 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 140,488 KB
最終ジャッジ日時 2024-07-16 03:22:21
合計ジャッジ時間 7,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,356 KB
testcase_01 AC 77 ms
76,760 KB
testcase_02 AC 59 ms
69,052 KB
testcase_03 AC 68 ms
76,360 KB
testcase_04 AC 72 ms
76,496 KB
testcase_05 AC 71 ms
76,608 KB
testcase_06 AC 72 ms
76,860 KB
testcase_07 AC 77 ms
76,680 KB
testcase_08 AC 72 ms
76,780 KB
testcase_09 AC 72 ms
76,884 KB
testcase_10 AC 73 ms
76,840 KB
testcase_11 AC 70 ms
77,056 KB
testcase_12 AC 69 ms
76,556 KB
testcase_13 AC 356 ms
95,700 KB
testcase_14 AC 452 ms
103,160 KB
testcase_15 AC 427 ms
102,364 KB
testcase_16 AC 417 ms
108,428 KB
testcase_17 AC 492 ms
110,256 KB
testcase_18 AC 384 ms
101,220 KB
testcase_19 AC 556 ms
112,912 KB
testcase_20 AC 244 ms
86,832 KB
testcase_21 AC 280 ms
87,416 KB
testcase_22 AC 97 ms
77,780 KB
testcase_23 AC 406 ms
106,748 KB
testcase_24 AC 404 ms
107,276 KB
testcase_25 AC 749 ms
140,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

M,D = map(int, input().split())

def count(x):
    a = str(x)
    n = len(a)
    #配列は末から
    #数字和は制約から2000を超えることはない
    dp=[[[0] * 2100 for _ in range(2)] for _ in range(n+1)]
    dp[0][0][0] = 1

    #条件に合わせてDP
    for i, less, suujiwa in product(range(n), (0,1), range(2000)):
        max_d = 9 if less else int(a[i])
        for d in range(max_d+1):
            less_ = less or d < max_d
            suujiwa_ = suujiwa + d
            dp[i + 1][less_][suujiwa_] += dp[i][less][suujiwa]

    return dp[n]
m = count(M)
d = count(D)

ret = 0
for i in range(1,2000):
    ret += (m[False][i]+m[True][i])*(d[False][i]+d[True][i])
mod = 10**9+9
print(ret%mod)
0