結果

問題 No.158 奇妙なお使い
ユーザー roiti46roiti46
提出日時 2015-03-01 18:44:32
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 963 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 6,600 KB
実行使用メモリ 93,772 KB
最終ジャッジ日時 2023-09-06 05:55:12
合計ジャッジ時間 10,884 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 247 ms
92,684 KB
testcase_01 AC 266 ms
92,908 KB
testcase_02 AC 231 ms
92,788 KB
testcase_03 AC 227 ms
92,892 KB
testcase_04 RE -
testcase_05 AC 241 ms
92,684 KB
testcase_06 AC 242 ms
92,692 KB
testcase_07 AC 243 ms
92,756 KB
testcase_08 AC 242 ms
92,652 KB
testcase_09 AC 245 ms
92,732 KB
testcase_10 AC 250 ms
93,024 KB
testcase_11 AC 234 ms
93,032 KB
testcase_12 AC 241 ms
92,632 KB
testcase_13 AC 228 ms
92,956 KB
testcase_14 AC 254 ms
92,736 KB
testcase_15 AC 305 ms
92,812 KB
testcase_16 AC 232 ms
92,988 KB
testcase_17 AC 483 ms
93,204 KB
testcase_18 RE -
testcase_19 AC 230 ms
92,840 KB
testcase_20 AC 244 ms
92,872 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 233 ms
93,000 KB
testcase_24 AC 231 ms
92,744 KB
testcase_25 AC 242 ms
92,652 KB
testcase_26 AC 318 ms
92,800 KB
testcase_27 AC 243 ms
92,684 KB
testcase_28 AC 471 ms
92,896 KB
testcase_29 AC 294 ms
92,820 KB
testcase_30 AC 751 ms
93,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(a1,a2,a3):
    if memo[a1][a2][a3] >= 0: return memo[a1][a2][a3]
    res = 0
    if 1000*a1+100*a2+a3 >= Db:
        x1,x2,x3,db = a1,a2,a3,Db
        while x1 and db >= 1000: db -= 1000; x1 -= 1
        while x2 and db >=  100: db -=  100; x2 -= 1
        while x3 and db >=    1: db -=    1; x3 -= 1
        if db == 0: res = max(res, solve(x1+B1, x2+B2, x3+B3)+1)


    if 1000*a1+100*a2+a3 >= Dc:
        x1,x2,x3,dc = a1,a2,a3,Dc
        while x1 and dc >= 1000: dc -= 1000; x1 -= 1
        while x2 and dc >=  100: dc -=  100; x2 -= 1
        while x3 and dc >=    1: dc -=    1; x3 -= 1
        if dc == 0: res = max(res, solve(x1+C1, x2+C2, x3+C3)+1)
    memo[a1][a2][a3] = res;
    return res;


A1,A2,A3 = map(int,raw_input().split())
Db = int(raw_input())
B1,B2,B3 = map(int,raw_input().split())
Dc = int(raw_input())
C1,C2,C3 = map(int,raw_input().split())
memo = [[[-1]*10001 for i in xrange(101)] for j in xrange(11)]
print solve(A1,A2,A3)
0