結果

問題 No.2693 Sword
ユーザー tohohogisutohohogisu
提出日時 2024-02-01 16:16:14
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 502 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 142,572 KB
最終ジャッジ日時 2024-09-28 12:59:42
合計ジャッジ時間 3,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,540 KB
testcase_01 AC 38 ms
52,612 KB
testcase_02 AC 38 ms
52,372 KB
testcase_03 WA -
testcase_04 AC 38 ms
52,344 KB
testcase_05 AC 38 ms
53,732 KB
testcase_06 AC 38 ms
52,340 KB
testcase_07 AC 38 ms
52,328 KB
testcase_08 AC 38 ms
52,292 KB
testcase_09 AC 75 ms
74,500 KB
testcase_10 AC 53 ms
62,584 KB
testcase_11 AC 71 ms
72,260 KB
testcase_12 AC 38 ms
52,556 KB
testcase_13 AC 59 ms
66,892 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 84 ms
78,272 KB
testcase_20 AC 70 ms
71,920 KB
testcase_21 AC 75 ms
73,828 KB
testcase_22 AC 82 ms
74,852 KB
testcase_23 AC 72 ms
71,648 KB
testcase_24 AC 39 ms
52,628 KB
testcase_25 WA -
testcase_26 AC 38 ms
53,092 KB
testcase_27 WA -
testcase_28 AC 38 ms
53,416 KB
testcase_29 AC 40 ms
54,060 KB
testcase_30 AC 39 ms
53,976 KB
testcase_31 AC 39 ms
54,100 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p,k = map(int, input().split())

dp = [[0 for i in range(k + 1)] for i in range(n + 1)]
dp[0][0] = p
# dp[i][j] = i 番目のエンブレムまで使えて j 種類装備しているときの最大攻撃力

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