結果

問題 No.2693 Sword
ユーザー nikoro256nikoro256
提出日時 2024-03-22 21:52:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 740 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 66,688 KB
最終ジャッジ日時 2024-09-30 11:21:29
合計ジャッジ時間 2,874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 WA -
testcase_05 AC 41 ms
51,840 KB
testcase_06 WA -
testcase_07 AC 40 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 51 ms
55,780 KB
testcase_10 AC 44 ms
52,480 KB
testcase_11 AC 48 ms
54,016 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 46 ms
53,120 KB
testcase_14 AC 43 ms
52,224 KB
testcase_15 AC 57 ms
60,928 KB
testcase_16 AC 63 ms
63,232 KB
testcase_17 AC 62 ms
62,976 KB
testcase_18 AC 55 ms
60,672 KB
testcase_19 AC 55 ms
61,184 KB
testcase_20 AC 64 ms
64,128 KB
testcase_21 AC 70 ms
66,688 KB
testcase_22 AC 62 ms
63,744 KB
testcase_23 AC 57 ms
62,208 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 40 ms
51,840 KB
testcase_30 AC 40 ms
52,096 KB
testcase_31 AC 40 ms
51,968 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P,K=map(int,input().split())
counttwo=0
ones=[]
dat=[]
for _ in range(N):
    t,b=map(int,input().split())
    if t==2:
        counttwo+=1
    else:
        ones.append(b)
    dat.append([t,b])
ones.sort(reverse=True)
ans=0
for i in range(min(counttwo+1,K)):
    use=K-i
    if len(ones)>=use:
        lis=[]
        mul=1
        twocount=0
        count=0
        for j in range(N-1,-1,-1):
            if dat[j][0]==2:
                if twocount<i:
                    mul*=2
                    twocount+=1
            else:
                lis.append(mul*dat[j][1])
        lis.sort(reverse=True)
        tmp=P*mul+sum(lis[:use])
        if tmp>=10**18:
            print(-1)
            exit(0)
        ans=max(ans,tmp)
print(ans)
0