結果

問題 No.158 奇妙なお使い
ユーザー yuki2006yuki2006
提出日時 2015-02-26 22:28:54
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 381 ms / 5,000 ms
コード長 1,694 bytes
コンパイル時間 1,329 ms
コンパイル使用メモリ 76,572 KB
実行使用メモリ 175,816 KB
最終ジャッジ日時 2024-06-28 22:19:26
合計ジャッジ時間 12,157 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
174,452 KB
testcase_01 AC 291 ms
175,004 KB
testcase_02 AC 289 ms
174,392 KB
testcase_03 AC 293 ms
174,584 KB
testcase_04 AC 381 ms
175,816 KB
testcase_05 AC 295 ms
174,144 KB
testcase_06 AC 296 ms
174,620 KB
testcase_07 AC 295 ms
174,504 KB
testcase_08 AC 289 ms
174,356 KB
testcase_09 AC 294 ms
174,364 KB
testcase_10 AC 305 ms
174,516 KB
testcase_11 AC 296 ms
174,336 KB
testcase_12 AC 293 ms
174,336 KB
testcase_13 AC 293 ms
173,976 KB
testcase_14 AC 306 ms
174,752 KB
testcase_15 AC 310 ms
174,976 KB
testcase_16 AC 303 ms
174,592 KB
testcase_17 AC 319 ms
175,140 KB
testcase_18 AC 313 ms
174,484 KB
testcase_19 AC 292 ms
174,108 KB
testcase_20 AC 307 ms
174,508 KB
testcase_21 AC 302 ms
174,828 KB
testcase_22 AC 306 ms
174,760 KB
testcase_23 AC 303 ms
174,592 KB
testcase_24 AC 293 ms
174,592 KB
testcase_25 AC 295 ms
173,980 KB
testcase_26 AC 298 ms
174,892 KB
testcase_27 AC 289 ms
174,208 KB
testcase_28 AC 297 ms
174,848 KB
testcase_29 AC 298 ms
174,248 KB
testcase_30 AC 304 ms
174,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

def solve(A, Db, B, Dc, C):
    LA = 10001
    LB = 11
    LC = 101
    mx = 0
    dp = [[[-1 for _ in xrange(LC)] for _ in xrange(LB)] for _ in xrange(LA)]
    dp[0][A[0]][A[1]] = A[2]
    for i in xrange(1, LA):
        for j in xrange(0, LB):
            for k in xrange(0, LC):
                if dp[i - 1][j][k] == -1:
                    continue
                d = Db
                use1000 = min(j, d / 1000)
                d -= use1000 * 1000

                use100 = min(k, d / 100)
                d -= use100 * 100
                if d <= dp[i - 1][j][k]:
                    # お使いが可能ならお使いをする
                    dp[i][j - use1000 + B[0]][k - use100 + B[1]] = max(dp[i][j - use1000 + B[0]][k - use100 + B[1]],
                                                                       dp[i - 1][j][k] - d + B[2])

                    mx = max(mx, i)

                d = Dc
                use1000 = min(j, d / 1000)
                d -= use1000 * 1000

                use100 = min(k, d / 100)
                d -= use100 * 100
                if d <= dp[i - 1][j][k]:
                    # お使いが可能ならお使いをする
                    dp[i][j - use1000 + C[0]][k - use100 + C[1]] = max(dp[i][j - use1000 + C[0]][k - use100 + C[1]],
                                                                       dp[i - 1][j][k] - d + C[2])

                    mx = max(mx, i)
    return mx


if __name__ == '__main__':
    A = map(int, raw_input().split())
    Db = int(raw_input())
    B = map(int, raw_input().split())
    Dc = int(raw_input())
    C = map(int, raw_input().split())
    print solve(A, Db, B, Dc, C)
0