結果

問題 No.158 奇妙なお使い
ユーザー maspymaspy
提出日時 2020-03-18 12:16:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 782 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,504 KB
最終ジャッジ日時 2024-12-14 01:40:23
合計ジャッジ時間 45,960 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
21,248 KB
testcase_01 AC 1,337 ms
17,956 KB
testcase_02 AC 53 ms
17,440 KB
testcase_03 AC 30 ms
21,376 KB
testcase_04 RE -
testcase_05 AC 30 ms
21,504 KB
testcase_06 AC 30 ms
21,248 KB
testcase_07 AC 30 ms
17,444 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 47 ms
10,624 KB
testcase_11 TLE -
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 331 ms
10,624 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 RE -
testcase_19 AC 31 ms
10,624 KB
testcase_20 TLE -
testcase_21 RE -
testcase_22 RE -
testcase_23 TLE -
testcase_24 AC 322 ms
10,624 KB
testcase_25 AC 30 ms
10,624 KB
testcase_26 AC 54 ms
10,752 KB
testcase_27 AC 29 ms
10,624 KB
testcase_28 TLE -
testcase_29 AC 31 ms
10,624 KB
testcase_30 AC 38 ms
21,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from functools import lru_cache

# %%
A = tuple(map(int, readline().split()))
DB = int(readline())
B = tuple(map(int, readline().split()))
DC = int(readline())
C = tuple(map(int, readline().split()))


# %%
def f(X, Y, Z):
    ret = 0
    for cost, gain in ((DB, B), (DC, C)):
        x = cost // 1000
        if X < x:
            x = X
        cost -= 1000 * x
        y = cost // 100
        if Y < y:
            y = Y
        cost -= 100 * y
        if cost > Z:
            continue
        n = 1 + f(X - x + gain[0], Y - y + gain[1], Z - cost + gain[2])
        if ret < n:
            ret = n
    return ret


# %%
print(f(*A))
0