結果

問題 No.2693 Sword
ユーザー VvyLwVvyLw
提出日時 2024-03-25 12:39:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,283 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,536 KB
最終ジャッジ日時 2024-09-30 14:03:42
合計ジャッジ時間 6,998 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 772 ms
33,536 KB
testcase_10 AC 61 ms
11,904 KB
testcase_11 AC 259 ms
18,432 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 147 ms
14,464 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 215 ms
19,328 KB
testcase_16 AC 376 ms
26,496 KB
testcase_17 AC 72 ms
18,048 KB
testcase_18 AC 60 ms
14,080 KB
testcase_19 AC 362 ms
16,000 KB
testcase_20 AC 867 ms
25,216 KB
testcase_21 AC 1,283 ms
32,896 KB
testcase_22 AC 550 ms
19,328 KB
testcase_23 AC 420 ms
16,768 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 26 ms
10,624 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 AC 28 ms
10,624 KB
testcase_30 AC 28 ms
10,752 KB
testcase_31 AC 25 ms
10,624 KB
testcase_32 AC 69 ms
19,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p, k = map(int, input().split())
dp = [[0 for _ in range(n + 1)] for _ in range(n + 1)]
dp[0][0] = p
for i in range(n):
    t, b = map(int, input().split())
    for j in range(n):
        if t == 1:
            x = dp[i][j] + b
            if x > 10 ** 18: exit(print(-1))
            dp[i + 1][j + 1] = max(dp[i + 1][j + 1], x)
        else:
            x = dp[i][j] * 2
            if x > 10 ** 18: exit(print(-1))
            dp[i + 1][j + 1] = max(dp[i + 1][j + 1], x)
        dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
print(dp[n][k])
0