結果

問題 No.2693 Sword
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-23 03:50:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 304 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 68,148 KB
最終ジャッジ日時 2024-09-30 13:01:50
合計ジャッジ時間 2,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 34 ms
51,712 KB
testcase_03 WA -
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
58,752 KB
testcase_15 AC 53 ms
64,128 KB
testcase_16 WA -
testcase_17 AC 59 ms
66,304 KB
testcase_18 AC 50 ms
62,976 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 54 ms
65,408 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 36 ms
51,968 KB
testcase_25 AC 36 ms
52,096 KB
testcase_26 AC 35 ms
52,224 KB
testcase_27 AC 35 ms
52,096 KB
testcase_28 AC 34 ms
51,968 KB
testcase_29 AC 35 ms
52,224 KB
testcase_30 AC 34 ms
52,608 KB
testcase_31 WA -
testcase_32 AC 60 ms
65,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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