結果

問題 No.2693 Sword
ユーザー 👑 p-adicp-adic
提出日時 2024-03-22 22:00:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 76,296 KB
最終ジャッジ日時 2024-03-22 22:00:26
合計ジャッジ時間 3,269 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,332 KB
testcase_01 AC 41 ms
53,332 KB
testcase_02 AC 37 ms
53,332 KB
testcase_03 AC 38 ms
53,332 KB
testcase_04 AC 37 ms
53,332 KB
testcase_05 AC 39 ms
53,332 KB
testcase_06 AC 37 ms
53,332 KB
testcase_07 AC 37 ms
53,332 KB
testcase_08 AC 37 ms
53,332 KB
testcase_09 AC 55 ms
64,544 KB
testcase_10 AC 46 ms
61,580 KB
testcase_11 AC 53 ms
64,540 KB
testcase_12 AC 36 ms
53,332 KB
testcase_13 AC 53 ms
64,544 KB
testcase_14 AC 44 ms
61,576 KB
testcase_15 AC 81 ms
75,996 KB
testcase_16 AC 62 ms
73,572 KB
testcase_17 AC 94 ms
76,296 KB
testcase_18 AC 67 ms
73,608 KB
testcase_19 AC 63 ms
72,840 KB
testcase_20 AC 52 ms
64,552 KB
testcase_21 AC 54 ms
66,636 KB
testcase_22 AC 60 ms
72,812 KB
testcase_23 AC 51 ms
66,652 KB
testcase_24 AC 37 ms
53,332 KB
testcase_25 AC 37 ms
53,332 KB
testcase_26 AC 38 ms
53,332 KB
testcase_27 AC 37 ms
53,332 KB
testcase_28 AC 36 ms
53,332 KB
testcase_29 AC 37 ms
53,332 KB
testcase_30 AC 37 ms
53,332 KB
testcase_31 AC 37 ms
53,332 KB
testcase_32 AC 109 ms
76,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
N,P,K=J()
D=[P]+[0]*K
for i in R(N):
	T,B=J()
	for k in R(K,0,-1):D[k]=max(D[k],D[k-1]+[B,D[k-1]][T-1])
print([D[K],-1][D[K]>10**18])
0