結果

問題 No.2693 Sword
ユーザー noriocnorioc
提出日時 2024-03-22 22:47:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 90,564 KB
最終ジャッジ日時 2024-09-30 12:12:45
合計ジャッジ時間 3,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,888 KB
testcase_01 AC 35 ms
53,492 KB
testcase_02 AC 34 ms
52,828 KB
testcase_03 AC 36 ms
53,140 KB
testcase_04 AC 36 ms
53,928 KB
testcase_05 AC 36 ms
53,176 KB
testcase_06 AC 35 ms
52,604 KB
testcase_07 AC 35 ms
52,924 KB
testcase_08 AC 34 ms
52,068 KB
testcase_09 AC 67 ms
69,436 KB
testcase_10 AC 48 ms
61,784 KB
testcase_11 AC 54 ms
64,920 KB
testcase_12 AC 38 ms
52,680 KB
testcase_13 AC 57 ms
64,132 KB
testcase_14 AC 49 ms
61,516 KB
testcase_15 AC 95 ms
77,684 KB
testcase_16 AC 88 ms
77,408 KB
testcase_17 AC 109 ms
78,624 KB
testcase_18 AC 78 ms
76,804 KB
testcase_19 AC 68 ms
72,224 KB
testcase_20 AC 56 ms
66,040 KB
testcase_21 AC 61 ms
68,600 KB
testcase_22 AC 71 ms
72,836 KB
testcase_23 AC 62 ms
67,160 KB
testcase_24 AC 39 ms
52,516 KB
testcase_25 AC 39 ms
52,404 KB
testcase_26 AC 38 ms
52,456 KB
testcase_27 AC 37 ms
53,412 KB
testcase_28 AC 38 ms
52,852 KB
testcase_29 AC 39 ms
54,112 KB
testcase_30 AC 39 ms
52,964 KB
testcase_31 AC 36 ms
52,404 KB
testcase_32 AC 152 ms
90,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, P, K = map(int, input().split())
items = []
for _ in range(N):
    T, B = map(int, input().split())
    items.append((T, B))

dp = [[0] * (K+1) for _ in range(N+1)]
dp[0][0] = P

for i in range(N):
    for j in range(K+1):
        dp[i+1][j] = dp[i][j]

    t, b = items[i]
    for j in range(K):
        if t == 1:
            dp[i+1][j+1] = max(dp[i+1][j+1], dp[i][j] + b)
        else:
            dp[i+1][j+1] = max(dp[i+1][j+1], dp[i][j] * 2)

res = dp[N][K]
if res > 10**18:
    print(-1)
else:
    print(res)
0