結果

問題 No.189 SUPER HAPPY DAY
ユーザー convexineqconvexineq
提出日時 2020-12-17 18:17:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 5,000 ms
コード長 490 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-09-21 08:09:33
合計ジャッジ時間 2,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
59,648 KB
testcase_01 AC 48 ms
59,776 KB
testcase_02 AC 51 ms
59,136 KB
testcase_03 AC 48 ms
60,032 KB
testcase_04 AC 48 ms
59,836 KB
testcase_05 AC 49 ms
59,904 KB
testcase_06 AC 48 ms
59,648 KB
testcase_07 AC 46 ms
59,648 KB
testcase_08 AC 47 ms
60,032 KB
testcase_09 AC 47 ms
60,032 KB
testcase_10 AC 48 ms
60,160 KB
testcase_11 AC 47 ms
59,776 KB
testcase_12 AC 46 ms
60,032 KB
testcase_13 AC 74 ms
66,048 KB
testcase_14 AC 82 ms
67,456 KB
testcase_15 AC 74 ms
66,048 KB
testcase_16 AC 73 ms
65,664 KB
testcase_17 AC 84 ms
67,328 KB
testcase_18 AC 78 ms
66,048 KB
testcase_19 AC 89 ms
69,120 KB
testcase_20 AC 65 ms
63,360 KB
testcase_21 AC 71 ms
64,512 KB
testcase_22 AC 55 ms
61,440 KB
testcase_23 AC 74 ms
64,512 KB
testcase_24 AC 76 ms
65,280 KB
testcase_25 AC 101 ms
69,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def get(s):
    N = 2000
    le = [0]*N
    eq = 0
    for i in s:
        d = int(i)
        nle = [0]*N
        for j in range(10):
            for k in range(N-j):
                nle[k+j] += le[k]
                nle[k+j] %= MOD
        for j in range(d):
            nle[j+eq] += 1
        eq += d
        le = nle
    le[eq] += 1
    le[0] -= 1
    return le

MOD = 10**9+9
m,n = input().split()
rm = get(m)
rn = get(n)
ans = 0
for i,j in zip(rm,rn):
    ans += i*j%MOD
print(ans%MOD)
0