結果

問題 No.189 SUPER HAPPY DAY
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-11 00:13:22
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 1,056 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 59,732 KB
最終ジャッジ日時 2024-07-05 22:10:37
合計ジャッジ時間 19,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 468 ms
55,224 KB
testcase_01 AC 465 ms
54,968 KB
testcase_02 AC 472 ms
55,220 KB
testcase_03 AC 476 ms
54,964 KB
testcase_04 AC 480 ms
55,096 KB
testcase_05 AC 486 ms
55,092 KB
testcase_06 AC 472 ms
55,220 KB
testcase_07 AC 485 ms
55,092 KB
testcase_08 AC 486 ms
55,224 KB
testcase_09 AC 487 ms
55,092 KB
testcase_10 AC 484 ms
55,220 KB
testcase_11 AC 479 ms
55,224 KB
testcase_12 AC 481 ms
55,096 KB
testcase_13 AC 801 ms
57,156 KB
testcase_14 AC 934 ms
57,000 KB
testcase_15 AC 988 ms
58,604 KB
testcase_16 AC 1,072 ms
59,520 KB
testcase_17 AC 1,084 ms
59,164 KB
testcase_18 AC 945 ms
58,596 KB
testcase_19 AC 1,130 ms
58,084 KB
testcase_20 AC 655 ms
56,536 KB
testcase_21 AC 643 ms
56,196 KB
testcase_22 AC 493 ms
55,300 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def getTable(M):
    dp1=[[[0 for i in range(2)] for j in range(1800)] for k in range(201)]
    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(1799,-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,1800):
    #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