結果

問題 No.2693 Sword
ユーザー ゼットゼット
提出日時 2024-03-22 21:34:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 597 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 63,444 KB
最終ジャッジ日時 2024-09-30 10:59:32
合計ジャッジ時間 2,533 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,088 KB
testcase_01 WA -
testcase_02 AC 38 ms
52,548 KB
testcase_03 AC 38 ms
52,724 KB
testcase_04 AC 39 ms
52,340 KB
testcase_05 AC 38 ms
52,812 KB
testcase_06 AC 39 ms
52,532 KB
testcase_07 AC 39 ms
52,344 KB
testcase_08 AC 38 ms
52,980 KB
testcase_09 AC 48 ms
56,200 KB
testcase_10 AC 39 ms
52,804 KB
testcase_11 AC 42 ms
55,016 KB
testcase_12 AC 36 ms
53,244 KB
testcase_13 AC 40 ms
54,240 KB
testcase_14 AC 38 ms
52,740 KB
testcase_15 AC 43 ms
55,436 KB
testcase_16 AC 49 ms
60,928 KB
testcase_17 AC 50 ms
61,928 KB
testcase_18 AC 43 ms
54,928 KB
testcase_19 WA -
testcase_20 AC 47 ms
56,948 KB
testcase_21 AC 53 ms
63,444 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 39 ms
52,940 KB
testcase_25 AC 37 ms
53,088 KB
testcase_26 AC 36 ms
52,836 KB
testcase_27 AC 36 ms
52,508 KB
testcase_28 AC 36 ms
52,856 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 49 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P,K=map(int,input().split())
L1=[]
L2=[]
for i in range(N):
  t,b=map(int,input().split())
  if t==1:
    L1.append(b)
  else:
    L2.append(2)
L1.sort(reverse=True)
L2.sort(reverse=True)
u=[1]
for i in range(len(L2)):
  u.append(L2[i])
result=0
for j in range(1,K+1):
  if j>=len(u):
    break
  u[j]=u[j-1]*u[j]
  if u[j]>10**18:
    print(-1)
    exit()
result=0
for i in range(len(L1)+1):
  if i>0:
    P+=L1[i-1]
  rest=K-i
  if rest<0:
    break
  if rest<len(u):
    score=P*u[rest]
  else:
    score=P*u[-1]
  result=max(result,score)
if result<=10**18:
  print(result)
else:
  print(-1)
0