結果

問題 No.1160 Strange Bowling
ユーザー lloyzlloyz
提出日時 2022-07-08 15:05:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 738 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,384 KB
最終ジャッジ日時 2024-06-08 08:17:55
合計ジャッジ時間 10,226 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 34 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 520 ms
36,864 KB
testcase_11 AC 291 ms
24,832 KB
testcase_12 AC 158 ms
17,536 KB
testcase_13 AC 92 ms
13,952 KB
testcase_14 AC 485 ms
34,432 KB
testcase_15 AC 133 ms
16,256 KB
testcase_16 AC 160 ms
17,792 KB
testcase_17 AC 451 ms
32,768 KB
testcase_18 AC 314 ms
25,856 KB
testcase_19 AC 215 ms
20,736 KB
testcase_20 AC 387 ms
29,312 KB
testcase_21 AC 299 ms
25,088 KB
testcase_22 AC 112 ms
14,976 KB
testcase_23 AC 112 ms
14,976 KB
testcase_24 AC 104 ms
14,720 KB
testcase_25 AC 238 ms
21,632 KB
testcase_26 AC 130 ms
16,000 KB
testcase_27 AC 350 ms
27,136 KB
testcase_28 AC 142 ms
16,768 KB
testcase_29 AC 484 ms
34,176 KB
testcase_30 AC 738 ms
48,384 KB
testcase_31 AC 407 ms
30,848 KB
testcase_32 AC 140 ms
16,512 KB
testcase_33 AC 283 ms
24,576 KB
testcase_34 AC 277 ms
24,064 KB
testcase_35 AC 626 ms
42,624 KB
testcase_36 AC 29 ms
10,752 KB
testcase_37 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
P = [list(map(int, input().split())) for _ in range(n)]

DP = [[0 for _ in range(2)] for _ in range(n + 1)]
for i in range(n):
    DP[i + 1][0] = max(DP[i + 1][0], DP[i][0] + P[i][0])
    if i >= 1:
        DP[i + 1][0] = max(DP[i + 1][0], DP[i][1] + 2 * P[i][0])
    DP[i + 1][1] = max(DP[i + 1][1], DP[i][0] + P[i][1])
    if i >= 1:
        DP[i + 1][1] = max(DP[i + 1][1], DP[i][1] + 2 * P[i][1])
print(max(DP[n]))
0