結果

問題 No.158 奇妙なお使い
ユーザー chocoruskchocorusk
提出日時 2020-09-13 22:36:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 875 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-06-13 04:32:24
合計ジャッジ時間 2,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 29 ms
11,008 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 RE -
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,496 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 35 ms
10,880 KB
testcase_16 AC 29 ms
10,880 KB
testcase_17 AC 54 ms
11,904 KB
testcase_18 RE -
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 32 ms
10,880 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 29 ms
10,496 KB
testcase_25 AC 31 ms
10,624 KB
testcase_26 AC 32 ms
10,752 KB
testcase_27 AC 29 ms
10,496 KB
testcase_28 AC 35 ms
11,008 KB
testcase_29 AC 29 ms
10,624 KB
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read=sys.stdin.buffer.read
readline=sys.stdin.buffer.readline
readlines=sys.stdin.buffer.readlines
sys.setrecursionlimit(10**6)
a1000, a100, a1=map(int, readline().split())
db=int(readline())
b1000, b100, b1=map(int, readline().split())
dc=int(readline())
c1000, c100, c1=map(int, readline().split())
from functools import lru_cache
@lru_cache(None)
def solve(x1000, x100, x1):
    ans=0
    b=db
    z1000=min(b//1000, x1000)
    b-=z1000*1000
    z100=min(b//100, x100)
    b-=z100*100
    z1=min(b, x1)
    b-=z1
    if b==0:
        ans=max(ans, solve(x1000-z1000+b1000, x100-z100+b100, x1-z1+b1)+1)
    c=dc
    z1000=min(c//1000, x1000)
    c-=z1000*1000
    z100=min(c//100, x100)
    c-=z100*100
    z1=min(c, x1)
    c-=z1
    if c==0:
        ans=max(ans, solve(x1000-z1000+c1000, x100-z100+c100, x1-z1+c1)+1)
    return ans
print(solve(a1000, a100, a1))
0