結果

問題 No.2693 Sword
ユーザー miztommiztom
提出日時 2024-03-22 21:30:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-09-30 10:53:23
合計ジャッジ時間 3,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 42 ms
51,328 KB
testcase_03 AC 38 ms
51,328 KB
testcase_04 AC 39 ms
51,328 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
51,328 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 57 ms
63,488 KB
testcase_10 AC 47 ms
59,392 KB
testcase_11 AC 55 ms
63,744 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 54 ms
63,744 KB
testcase_14 AC 45 ms
59,008 KB
testcase_15 AC 81 ms
76,256 KB
testcase_16 AC 68 ms
68,736 KB
testcase_17 AC 91 ms
76,416 KB
testcase_18 AC 64 ms
69,888 KB
testcase_19 AC 66 ms
67,328 KB
testcase_20 AC 54 ms
62,848 KB
testcase_21 AC 56 ms
64,128 KB
testcase_22 AC 64 ms
66,816 KB
testcase_23 AC 55 ms
64,768 KB
testcase_24 AC 39 ms
51,840 KB
testcase_25 AC 39 ms
51,712 KB
testcase_26 AC 38 ms
51,840 KB
testcase_27 AC 38 ms
51,584 KB
testcase_28 AC 37 ms
51,840 KB
testcase_29 AC 39 ms
51,712 KB
testcase_30 AC 38 ms
52,096 KB
testcase_31 AC 39 ms
51,840 KB
testcase_32 AC 108 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p,k=map(int,input().split())
d=[p]+[-1<<60]*k
for i in range(n):
    t,b=map(int,input().split())
    if t==1:
        for j in range(k,0,-1):d[j]=max(d[j],d[j-1]+b)
    else:
        for j in range(k,0,-1):d[j]=max(d[j],d[j-1]*2)
print(-1 if d[k]>10**18 else d[k])
0