結果

問題 No.158 奇妙なお使い
ユーザー roiti46roiti46
提出日時 2015-03-01 18:47:44
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,940 ms / 5,000 ms
コード長 1,004 bytes
コンパイル時間 1,006 ms
コンパイル使用メモリ 76,972 KB
実行使用メモリ 195,660 KB
最終ジャッジ日時 2024-06-24 00:36:25
合計ジャッジ時間 8,985 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
148,504 KB
testcase_01 AC 177 ms
164,916 KB
testcase_02 AC 148 ms
148,348 KB
testcase_03 AC 146 ms
148,156 KB
testcase_04 AC 1,940 ms
195,660 KB
testcase_05 AC 148 ms
148,640 KB
testcase_06 AC 148 ms
148,724 KB
testcase_07 AC 145 ms
148,232 KB
testcase_08 AC 147 ms
148,356 KB
testcase_09 AC 147 ms
148,624 KB
testcase_10 AC 154 ms
148,512 KB
testcase_11 AC 157 ms
148,896 KB
testcase_12 AC 149 ms
148,364 KB
testcase_13 AC 150 ms
148,384 KB
testcase_14 AC 180 ms
164,784 KB
testcase_15 AC 187 ms
165,288 KB
testcase_16 AC 150 ms
149,032 KB
testcase_17 AC 193 ms
165,116 KB
testcase_18 AC 204 ms
168,116 KB
testcase_19 AC 154 ms
148,668 KB
testcase_20 AC 159 ms
148,888 KB
testcase_21 AC 212 ms
169,868 KB
testcase_22 AC 208 ms
175,284 KB
testcase_23 AC 151 ms
148,756 KB
testcase_24 AC 154 ms
148,516 KB
testcase_25 AC 150 ms
148,636 KB
testcase_26 AC 161 ms
149,160 KB
testcase_27 AC 149 ms
148,800 KB
testcase_28 AC 183 ms
164,764 KB
testcase_29 AC 152 ms
148,540 KB
testcase_30 AC 198 ms
165,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000)
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