結果

問題 No.189 SUPER HAPPY DAY
ユーザー titiatitia
提出日時 2022-05-31 06:29:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,567 ms / 5,000 ms
コード長 570 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,744 KB
最終ジャッジ日時 2024-10-06 10:55:11
合計ジャッジ時間 32,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 62 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 71 ms
10,880 KB
testcase_04 AC 72 ms
10,880 KB
testcase_05 AC 75 ms
10,880 KB
testcase_06 AC 76 ms
11,008 KB
testcase_07 AC 82 ms
11,136 KB
testcase_08 AC 71 ms
11,008 KB
testcase_09 AC 76 ms
10,880 KB
testcase_10 AC 79 ms
10,880 KB
testcase_11 AC 83 ms
11,008 KB
testcase_12 AC 75 ms
11,008 KB
testcase_13 AC 1,983 ms
22,272 KB
testcase_14 AC 2,630 ms
26,240 KB
testcase_15 AC 2,543 ms
26,112 KB
testcase_16 AC 2,951 ms
28,416 KB
testcase_17 AC 3,193 ms
29,440 KB
testcase_18 AC 2,450 ms
25,344 KB
testcase_19 AC 3,567 ms
31,744 KB
testcase_20 AC 1,171 ms
17,024 KB
testcase_21 AC 1,235 ms
17,408 KB
testcase_22 AC 249 ms
11,904 KB
testcase_23 AC 2,906 ms
28,416 KB
testcase_24 AC 2,917 ms
28,288 KB
testcase_25 AC 2,900 ms
28,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod=10**9+9


ANS=[0]*2000
    
from functools import lru_cache
@lru_cache(maxsize=None)
def calc(X):
    ANS=[0]*2000
    if X<=9:
        for i in range(X+1):
            ANS[i]=1
        return ANS

    for i in range(10):
        if X>=i:
            x=(X-i)//10

            for j in range(2000):
                if calc(x)[j]!=0:
                    ANS[j+i]+=calc(x)[j]
                    ANS[j+i]%=mod
    return ANS

ANS=calc(M)
ANS2=calc(D)

score=0

for i in range(1,2000):
    score+=ANS[i]*ANS2[i]
    score%=mod

print(score)
0