結果

問題 No.2693 Sword
ユーザー flygonflygon
提出日時 2024-03-22 21:47:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 74,240 KB
最終ジャッジ日時 2024-09-30 11:16:45
合計ジャッジ時間 2,753 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,784 KB
testcase_01 AC 39 ms
54,144 KB
testcase_02 AC 41 ms
54,784 KB
testcase_03 AC 41 ms
54,656 KB
testcase_04 AC 40 ms
54,400 KB
testcase_05 AC 40 ms
54,144 KB
testcase_06 AC 41 ms
54,784 KB
testcase_07 AC 39 ms
54,528 KB
testcase_08 AC 40 ms
54,656 KB
testcase_09 AC 63 ms
70,016 KB
testcase_10 AC 51 ms
64,128 KB
testcase_11 AC 59 ms
67,328 KB
testcase_12 AC 41 ms
54,272 KB
testcase_13 AC 56 ms
65,280 KB
testcase_14 AC 50 ms
62,336 KB
testcase_15 AC 65 ms
71,680 KB
testcase_16 AC 69 ms
72,320 KB
testcase_17 AC 67 ms
70,912 KB
testcase_18 AC 59 ms
68,224 KB
testcase_19 AC 68 ms
71,936 KB
testcase_20 AC 55 ms
65,280 KB
testcase_21 AC 57 ms
67,456 KB
testcase_22 AC 69 ms
72,192 KB
testcase_23 AC 56 ms
66,816 KB
testcase_24 AC 43 ms
54,656 KB
testcase_25 AC 41 ms
54,400 KB
testcase_26 AC 41 ms
54,272 KB
testcase_27 AC 40 ms
54,656 KB
testcase_28 AC 39 ms
54,656 KB
testcase_29 AC 40 ms
55,040 KB
testcase_30 AC 39 ms
55,168 KB
testcase_31 AC 39 ms
54,528 KB
testcase_32 AC 68 ms
74,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,p,k = map(int,input().split())
tb = [list(map(int,input().split())) for i in range(n)]
dp = [[-1]*(k+1) for i in range(n+1)]
dp[0][0] = p
for i in range(1, n+1):
    t,b = tb[i-1]
    for j in range(k+1):
        dp[i][j] = dp[i-1][j]
        if j >= 1 and dp[i-1][j-1] != -1:
            dp[i][j] = min(10**18+1, max(dp[i][j], t*(dp[i-1][j-1]+b)))
ans = dp[-1][-1]
print(-1) if ans > 10**18 else print(ans)
0