結果

問題 No.189 SUPER HAPPY DAY
ユーザー Tsuneo YoshiokaTsuneo Yoshioka
提出日時 2015-04-22 02:00:10
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,795 ms / 5,000 ms
コード長 835 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-07-04 23:48:23
合計ジャッジ時間 11,850 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 83 ms
12,288 KB
testcase_02 AC 83 ms
12,160 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 85 ms
12,288 KB
testcase_05 AC 86 ms
12,160 KB
testcase_06 AC 84 ms
12,288 KB
testcase_07 AC 84 ms
12,160 KB
testcase_08 AC 85 ms
12,288 KB
testcase_09 AC 83 ms
12,416 KB
testcase_10 AC 85 ms
12,416 KB
testcase_11 AC 86 ms
12,288 KB
testcase_12 AC 85 ms
12,160 KB
testcase_13 AC 452 ms
12,544 KB
testcase_14 AC 642 ms
12,800 KB
testcase_15 AC 784 ms
12,928 KB
testcase_16 AC 931 ms
13,824 KB
testcase_17 AC 922 ms
13,824 KB
testcase_18 AC 711 ms
13,568 KB
testcase_19 AC 921 ms
13,568 KB
testcase_20 AC 274 ms
12,672 KB
testcase_21 AC 230 ms
12,416 KB
testcase_22 AC 89 ms
12,160 KB
testcase_23 AC 957 ms
13,824 KB
testcase_24 AC 955 ms
13,824 KB
testcase_25 AC 1,795 ms
13,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M, D = gets.split

def get_dp(s)
    dp = []
    # dp[0] = 1
    size = 0
    #puts "---------------"
    s.each_char{|ch|
        dp2 = []
        num = ch.ord - '0'.ord
        #puts "num=#{num}"
        (0..9).each{|i|
            (dp.size).downto(0).each{|j|
                dp2[j+i] = dp2[j+i].to_i + dp[j].to_i
                #puts "i=#{i}, j=#{j} dp2[#{j+i}]=#{dp2[j+i]}"
            }
        }
        (0..num-1).each{|j|
            dp2[j+size] = dp2[j+size].to_i + 1
            #puts "j=#{j} size=#{size} dp2[j+size]=#{dp2[j+size]}"
        }
        dp = dp2
        size += num
    }
    dp[size] += 1
    return dp
end
dp1 = get_dp(M)
dp2 = get_dp(D)
total = 0
(1..dp1.size).each{|i|
    cnt = dp1[i].to_i * dp2[i].to_i
    total += cnt
    #puts "i=#{i}, db1[i]=#{dp1[i]}, dp2[i]=#{dp2[i]}"
}
puts total % 1000000009

0