結果

問題 No.2693 Sword
ユーザー flygonflygon
提出日時 2024-03-22 21:43:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 84,140 KB
最終ジャッジ日時 2024-03-22 21:43:51
合計ジャッジ時間 3,224 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,600 KB
testcase_01 AC 45 ms
55,600 KB
testcase_02 AC 44 ms
55,600 KB
testcase_03 AC 45 ms
55,600 KB
testcase_04 AC 46 ms
55,600 KB
testcase_05 AC 44 ms
55,600 KB
testcase_06 AC 45 ms
55,600 KB
testcase_07 AC 47 ms
55,600 KB
testcase_08 AC 45 ms
55,600 KB
testcase_09 AC 71 ms
70,640 KB
testcase_10 AC 59 ms
63,944 KB
testcase_11 AC 66 ms
68,328 KB
testcase_12 AC 45 ms
55,600 KB
testcase_13 AC 58 ms
66,276 KB
testcase_14 AC 53 ms
64,072 KB
testcase_15 AC 104 ms
72,616 KB
testcase_16 AC 78 ms
72,752 KB
testcase_17 AC 74 ms
72,732 KB
testcase_18 AC 65 ms
68,476 KB
testcase_19 AC 77 ms
73,412 KB
testcase_20 AC 58 ms
66,512 KB
testcase_21 AC 62 ms
68,596 KB
testcase_22 AC 79 ms
72,880 KB
testcase_23 AC 63 ms
66,376 KB
testcase_24 WA -
testcase_25 AC 44 ms
55,600 KB
testcase_26 AC 44 ms
55,600 KB
testcase_27 AC 44 ms
55,600 KB
testcase_28 AC 45 ms
55,600 KB
testcase_29 AC 44 ms
55,600 KB
testcase_30 AC 45 ms
55,600 KB
testcase_31 AC 45 ms
55,600 KB
testcase_32 AC 90 ms
84,140 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):
        if dp[i-1][j] != -1:
            dp[i][j] = dp[i-1][j]
        if j >= 1 and dp[i-1][j-1] != -1:
            dp[i][j] = min(10**18, 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