結果

問題 No.2693 Sword
ユーザー miya145592miya145592
提出日時 2024-03-22 22:18:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 73,648 KB
最終ジャッジ日時 2024-09-30 11:45:52
合計ジャッジ時間 2,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,064 KB
testcase_01 AC 32 ms
52,404 KB
testcase_02 AC 33 ms
52,356 KB
testcase_03 AC 33 ms
52,264 KB
testcase_04 AC 33 ms
52,504 KB
testcase_05 AC 33 ms
52,344 KB
testcase_06 AC 31 ms
52,492 KB
testcase_07 AC 32 ms
53,248 KB
testcase_08 AC 32 ms
52,612 KB
testcase_09 AC 57 ms
69,996 KB
testcase_10 AC 45 ms
63,700 KB
testcase_11 AC 51 ms
67,552 KB
testcase_12 AC 34 ms
52,064 KB
testcase_13 AC 47 ms
65,172 KB
testcase_14 AC 33 ms
53,776 KB
testcase_15 AC 46 ms
64,216 KB
testcase_16 AC 51 ms
67,084 KB
testcase_17 AC 40 ms
61,844 KB
testcase_18 AC 40 ms
60,824 KB
testcase_19 AC 61 ms
71,664 KB
testcase_20 AC 47 ms
66,432 KB
testcase_21 AC 55 ms
69,948 KB
testcase_22 AC 65 ms
73,648 KB
testcase_23 AC 51 ms
67,628 KB
testcase_24 AC 34 ms
54,248 KB
testcase_25 AC 32 ms
52,200 KB
testcase_26 AC 33 ms
52,256 KB
testcase_27 AC 33 ms
52,356 KB
testcase_28 AC 33 ms
52,132 KB
testcase_29 AC 33 ms
53,016 KB
testcase_30 AC 33 ms
52,460 KB
testcase_31 AC 33 ms
53,056 KB
testcase_32 AC 38 ms
61,300 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+1):
        if dp[j]==0:
            continue
        ndp[j] = max(ndp[j], dp[j])
        if j+1<=K:
            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