結果

問題 No.2693 Sword
ユーザー flygonflygon
提出日時 2024-03-22 21:38:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 775 bytes
コンパイル時間 636 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 74,368 KB
最終ジャッジ日時 2024-09-30 11:06:58
合計ジャッジ時間 3,256 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,272 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 45 ms
54,400 KB
testcase_03 AC 44 ms
54,272 KB
testcase_04 AC 44 ms
54,144 KB
testcase_05 AC 45 ms
54,400 KB
testcase_06 AC 43 ms
54,272 KB
testcase_07 AC 45 ms
54,400 KB
testcase_08 AC 45 ms
54,400 KB
testcase_09 AC 69 ms
69,504 KB
testcase_10 AC 58 ms
63,488 KB
testcase_11 AC 66 ms
66,688 KB
testcase_12 AC 47 ms
54,528 KB
testcase_13 AC 60 ms
64,640 KB
testcase_14 AC 56 ms
62,848 KB
testcase_15 AC 73 ms
70,528 KB
testcase_16 AC 80 ms
71,296 KB
testcase_17 AC 76 ms
70,912 KB
testcase_18 AC 66 ms
67,200 KB
testcase_19 AC 82 ms
72,064 KB
testcase_20 AC 64 ms
66,048 KB
testcase_21 AC 67 ms
67,328 KB
testcase_22 AC 78 ms
70,912 KB
testcase_23 AC 62 ms
65,792 KB
testcase_24 WA -
testcase_25 AC 47 ms
54,144 KB
testcase_26 AC 45 ms
54,272 KB
testcase_27 AC 46 ms
54,528 KB
testcase_28 AC 47 ms
54,400 KB
testcase_29 AC 49 ms
54,656 KB
testcase_30 AC 49 ms
54,784 KB
testcase_31 AC 49 ms
54,016 KB
testcase_32 AC 89 ms
74,368 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 = [[0]*(k+1) for i in range(n+1)]
dp[0][0] = p
if dp[0][0] >= 10**18:
    dp[0][0] = -1
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 dp[i][j] == -1: continue
        if j >= 1:
            if dp[i-1][j-1] == -1:
                dp[i][j] = -1
            else:
                dp[i][j] = max(dp[i][j], t*(dp[i-1][j-1]+b))
        if dp[i][j] >= 10**18:
            dp[i][j] = -1

print(dp[-1][-1])
0