結果

問題 No.189 SUPER HAPPY DAY
ユーザー titiatitia
提出日時 2022-05-31 06:29:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 3,522 ms / 5,000 ms
コード長 570 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-12-21 17:45:42
合計ジャッジ時間 31,988 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,240 KB
testcase_01 AC 58 ms
10,624 KB
testcase_02 AC 26 ms
10,368 KB
testcase_03 AC 67 ms
10,752 KB
testcase_04 AC 70 ms
10,752 KB
testcase_05 AC 72 ms
10,880 KB
testcase_06 AC 71 ms
10,752 KB
testcase_07 AC 80 ms
10,752 KB
testcase_08 AC 70 ms
10,880 KB
testcase_09 AC 76 ms
10,624 KB
testcase_10 AC 78 ms
10,880 KB
testcase_11 AC 74 ms
10,752 KB
testcase_12 AC 74 ms
10,752 KB
testcase_13 AC 1,967 ms
21,888 KB
testcase_14 AC 2,575 ms
25,856 KB
testcase_15 AC 2,559 ms
25,728 KB
testcase_16 AC 2,855 ms
28,032 KB
testcase_17 AC 3,139 ms
29,312 KB
testcase_18 AC 2,387 ms
25,088 KB
testcase_19 AC 3,522 ms
31,488 KB
testcase_20 AC 1,117 ms
17,024 KB
testcase_21 AC 1,195 ms
17,280 KB
testcase_22 AC 240 ms
11,648 KB
testcase_23 AC 2,846 ms
27,904 KB
testcase_24 AC 2,809 ms
28,160 KB
testcase_25 AC 2,834 ms
27,904 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