結果

問題 No.189 SUPER HAPPY DAY
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-11 00:19:10
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,461 ms / 5,000 ms
コード長 1,056 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 60,324 KB
最終ジャッジ日時 2024-07-05 22:11:01
合計ジャッジ時間 18,275 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 410 ms
55,712 KB
testcase_01 AC 410 ms
55,712 KB
testcase_02 AC 401 ms
55,716 KB
testcase_03 AC 403 ms
55,588 KB
testcase_04 AC 403 ms
55,716 KB
testcase_05 AC 402 ms
55,584 KB
testcase_06 AC 414 ms
55,712 KB
testcase_07 AC 404 ms
55,712 KB
testcase_08 AC 409 ms
55,712 KB
testcase_09 AC 401 ms
55,840 KB
testcase_10 AC 405 ms
55,584 KB
testcase_11 AC 408 ms
55,588 KB
testcase_12 AC 403 ms
55,716 KB
testcase_13 AC 686 ms
57,780 KB
testcase_14 AC 803 ms
57,628 KB
testcase_15 AC 836 ms
59,100 KB
testcase_16 AC 1,076 ms
60,208 KB
testcase_17 AC 1,110 ms
59,664 KB
testcase_18 AC 807 ms
59,216 KB
testcase_19 AC 972 ms
58,704 KB
testcase_20 AC 556 ms
56,900 KB
testcase_21 AC 542 ms
56,564 KB
testcase_22 AC 414 ms
56,108 KB
testcase_23 AC 927 ms
60,324 KB
testcase_24 AC 941 ms
60,032 KB
testcase_25 AC 1,461 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M,D=map(int,raw_input().split())
mod=1000000009

def getTable(M):
    dp1=[[[0 for i in range(2)] for j in range(1810)] for k in range(202)]
    Mb=1
    dp1[0][0][0]=1
    while Mb*10<=M:
        Mb*=10
    ind=0
    while Mb>0:
        b=M/Mb
        for s in range(1809,-1,-1):
            if dp1[ind][s][0]>0:
                for i in range(b):
                    dp1[ind+1][s+i][1]+=dp1[ind][s][0]
                    dp1[ind+1][s+i][1]%=mod
                dp1[ind+1][s+b][0]+=dp1[ind][s][0]
                dp1[ind+1][s+b][0]%=mod
            if dp1[ind][s][1]>0:
                for i in range(10):
                    dp1[ind+1][s+i][1]+=dp1[ind][s][1]
                    dp1[ind+1][s+i][1]%=mod
        ind+=1
        M%=Mb
        Mb/=10
    return dp1[ind]

dpM=getTable(M)
dpD=getTable(D)
ans=0
for i in range(1,1809):
    #if dpM[i][0]!=0 or dpM[i][1]!=0 or dpD[i][0]!=0 or dpD[i][1]!=0:
    #    print  i,":",dpM[i][0],"+",dpM[i][1],"...",dpD[i][0],"+",dpD[i][1]
    ans+=(dpM[i][0]+dpM[i][1])*(dpD[i][0]+dpD[i][1])
    ans%=mod
print ans
0