結果

問題 No.2693 Sword
ユーザー hibit_athibit_at
提出日時 2024-02-09 08:52:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 192,568 KB
最終ジャッジ日時 2024-09-28 13:00:19
合計ジャッジ時間 3,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,000 KB
testcase_01 AC 39 ms
52,472 KB
testcase_02 AC 39 ms
52,200 KB
testcase_03 AC 39 ms
52,752 KB
testcase_04 AC 38 ms
52,616 KB
testcase_05 AC 37 ms
52,188 KB
testcase_06 AC 36 ms
52,200 KB
testcase_07 AC 36 ms
52,940 KB
testcase_08 AC 35 ms
51,944 KB
testcase_09 AC 75 ms
75,020 KB
testcase_10 AC 51 ms
62,280 KB
testcase_11 AC 70 ms
72,252 KB
testcase_12 AC 37 ms
52,076 KB
testcase_13 AC 57 ms
67,264 KB
testcase_14 AC 46 ms
62,768 KB
testcase_15 AC 99 ms
78,080 KB
testcase_16 AC 90 ms
78,184 KB
testcase_17 AC 121 ms
81,880 KB
testcase_18 AC 84 ms
77,300 KB
testcase_19 AC 76 ms
75,792 KB
testcase_20 AC 68 ms
73,216 KB
testcase_21 AC 70 ms
74,340 KB
testcase_22 AC 75 ms
75,016 KB
testcase_23 AC 67 ms
72,512 KB
testcase_24 AC 36 ms
53,232 KB
testcase_25 AC 34 ms
52,808 KB
testcase_26 AC 36 ms
53,372 KB
testcase_27 AC 37 ms
53,620 KB
testcase_28 AC 36 ms
52,900 KB
testcase_29 AC 37 ms
52,548 KB
testcase_30 AC 37 ms
52,896 KB
testcase_31 AC 36 ms
52,772 KB
testcase_32 AC 304 ms
192,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p,k = list(map(int, input().split(' ')))
dp = [[p] * (k+1) for i in range(n+1)]
for i in range(n):
    t,b = list(map(int, input().split(' ')))
    for j in range(k+1):
        dp[i+1][j] = max(dp[i+1][j],dp[i][j])
        if j + 1 <= 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)
if dp[n][k] > 1e18:
    print(-1)
else:
    print(dp[n][k])
0