結果

問題 No.158 奇妙なお使い
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-01 14:55:06
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,043 ms / 5,000 ms
コード長 1,568 bytes
コンパイル時間 920 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 176,756 KB
最終ジャッジ日時 2024-06-28 22:31:47
合計ジャッジ時間 14,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
175,476 KB
testcase_01 AC 380 ms
176,580 KB
testcase_02 AC 272 ms
175,280 KB
testcase_03 AC 292 ms
165,392 KB
testcase_04 AC 2,043 ms
176,756 KB
testcase_05 AC 198 ms
165,804 KB
testcase_06 AC 285 ms
165,464 KB
testcase_07 AC 198 ms
165,136 KB
testcase_08 AC 278 ms
174,892 KB
testcase_09 AC 328 ms
175,648 KB
testcase_10 AC 330 ms
175,568 KB
testcase_11 AC 332 ms
175,544 KB
testcase_12 AC 309 ms
174,884 KB
testcase_13 AC 299 ms
175,016 KB
testcase_14 AC 383 ms
176,216 KB
testcase_15 AC 407 ms
176,716 KB
testcase_16 AC 446 ms
176,456 KB
testcase_17 AC 571 ms
176,732 KB
testcase_18 AC 356 ms
175,752 KB
testcase_19 AC 361 ms
175,376 KB
testcase_20 AC 378 ms
175,500 KB
testcase_21 AC 334 ms
175,140 KB
testcase_22 AC 325 ms
175,324 KB
testcase_23 AC 367 ms
176,160 KB
testcase_24 AC 345 ms
175,652 KB
testcase_25 AC 299 ms
174,808 KB
testcase_26 AC 352 ms
176,724 KB
testcase_27 AC 303 ms
175,260 KB
testcase_28 AC 438 ms
176,552 KB
testcase_29 AC 303 ms
175,564 KB
testcase_30 AC 454 ms
176,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A1000,A100,A1=map(int,raw_input().split())
Db =int(raw_input())
B1000,B100,B1=map(int,raw_input().split())
Dc = int(raw_input())
C1000,C100,C1=map(int,raw_input().split())

dp = [[[-1 for i in xrange(101)] for j in xrange(11)] for k in xrange(10001)]
dp[A1000*1000+A100*100+A1][A1000][A100]=0
ans = 0
for tot in range(A1000*1000+A100*100+A1,-1,-1):
    for At in range(11):
        for Ah in range(101):
            Ao = tot-At*1000-Ah*100
            dist = dp[tot][At][Ah]
            if dist < 0:
                continue
            ans = max(ans,dist)
            for at in range(min(At,Db/1000)+1):
                for ah in range( max(0,(Db-at*1000-Ao+99)/100), min(Ah,max(0,(Db-at*1000)/100))+1):
                    ao=Db-at*1000-ah*100
                    if at > At or ah > Ah or ao > Ao:
                        print at,At,ah,Ah,ao,Ao
                    #print "see",At-at+B1000,Ah-ah+B100,Ao-ao+B1
                    Nt,Nh,No = At-at+B1000, Ah-ah+B100,Ao-ao+B1
                    Ntot = Nt*1000+Nh*100+No
                    dp[Ntot][Nt][Nh] = max(dp[Ntot][Nt][Nh],dist+1)
            for at in range(min(At,Dc/1000)+1):
                for ah in range( max(0,(Dc-at*1000-Ao+99)/100), min(Ah,max(0,(Dc-at*1000)/100))+1):
                    ao=Dc-at*1000-ah*100
                    if at > At or ah > Ah or ao > Ao:
                        print at,At,ah,Ah,ao,Ao
                    Nt,Nh,No = At-at+C1000, Ah-ah+C100,Ao-ao+C1
                    Ntot = Nt*1000+Nh*100+No
                    dp[Ntot][Nt][Nh] = max(dp[Ntot][Nt][Nh],dist+1)
print ans
0