結果

問題 No.1160 Strange Bowling
ユーザー roarisroaris
提出日時 2020-08-12 16:44:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 85,184 KB
最終ジャッジ日時 2024-10-09 18:28:02
合計ジャッジ時間 3,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,828 KB
testcase_01 AC 37 ms
53,280 KB
testcase_02 AC 37 ms
52,936 KB
testcase_03 AC 37 ms
52,024 KB
testcase_04 AC 36 ms
52,268 KB
testcase_05 AC 35 ms
52,140 KB
testcase_06 AC 35 ms
52,216 KB
testcase_07 AC 36 ms
52,760 KB
testcase_08 AC 35 ms
53,128 KB
testcase_09 AC 36 ms
53,076 KB
testcase_10 AC 81 ms
82,728 KB
testcase_11 AC 70 ms
79,608 KB
testcase_12 AC 58 ms
73,240 KB
testcase_13 AC 55 ms
70,040 KB
testcase_14 AC 79 ms
82,000 KB
testcase_15 AC 57 ms
72,192 KB
testcase_16 AC 59 ms
74,224 KB
testcase_17 AC 80 ms
81,648 KB
testcase_18 AC 74 ms
79,484 KB
testcase_19 AC 67 ms
78,764 KB
testcase_20 AC 75 ms
81,156 KB
testcase_21 AC 71 ms
79,692 KB
testcase_22 AC 56 ms
70,020 KB
testcase_23 AC 54 ms
70,372 KB
testcase_24 AC 55 ms
70,760 KB
testcase_25 AC 68 ms
78,568 KB
testcase_26 AC 56 ms
71,912 KB
testcase_27 AC 72 ms
80,100 KB
testcase_28 AC 57 ms
73,244 KB
testcase_29 AC 80 ms
81,856 KB
testcase_30 AC 87 ms
85,184 KB
testcase_31 AC 71 ms
81,048 KB
testcase_32 AC 52 ms
71,084 KB
testcase_33 AC 65 ms
79,572 KB
testcase_34 AC 65 ms
79,144 KB
testcase_35 AC 82 ms
84,028 KB
testcase_36 AC 38 ms
52,144 KB
testcase_37 AC 36 ms
53,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
dp = [[0]*2 for _ in range(N+1)]
dp[0][1] = -10**18

for i in range(N):
    p, a = map(int, input().split())
    dp[i+1][0] = max(dp[i][0]+p, dp[i][1]+2*p)
    dp[i+1][1] = max(dp[i][0]+a, dp[i][1]+2*a)

print(max(dp[N]))
0