結果

問題 No.2693 Sword
ユーザー miya145592miya145592
提出日時 2024-03-22 22:12:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 71,424 KB
最終ジャッジ日時 2024-09-30 11:41:49
合計ジャッジ時間 2,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 39 ms
51,584 KB
testcase_09 WA -
testcase_10 AC 54 ms
61,824 KB
testcase_11 AC 60 ms
64,768 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 57 ms
63,360 KB
testcase_16 AC 66 ms
66,432 KB
testcase_17 AC 48 ms
60,416 KB
testcase_18 AC 48 ms
59,776 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 37 ms
51,968 KB
testcase_26 AC 39 ms
51,840 KB
testcase_27 AC 37 ms
51,712 KB
testcase_28 AC 37 ms
51,584 KB
testcase_29 AC 40 ms
51,712 KB
testcase_30 AC 38 ms
52,224 KB
testcase_31 AC 38 ms
51,840 KB
testcase_32 AC 47 ms
59,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, P, K = map(int, input().split())
TB = [list(map(int, input().split())) for _ in range(N)]
dp = [0 for _ in range(K+1)]
dp[0] = P
for i in range(N):
    ndp = [0 for _ in range(K+1)]
    for j in range(K):
        if dp[j]==0:
            continue
        ndp[j] = max(ndp[j], dp[j])
        t, b = TB[i]
        if t==1:
            ndp[j+1] = max(ndp[j+1], dp[j]+b)
        else:
            ndp[j+1] = max(ndp[j+1], dp[j]*2)
        if ndp[j+1]>10**18:
            print(-1)
            exit()
    dp = ndp
print(dp[K])
0