結果

問題 No.1160 Strange Bowling
ユーザー yansi819yansi819
提出日時 2024-05-08 09:41:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 92,512 KB
最終ジャッジ日時 2024-12-14 12:37:58
合計ジャッジ時間 5,042 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,356 KB
testcase_01 AC 37 ms
53,280 KB
testcase_02 AC 38 ms
52,312 KB
testcase_03 AC 38 ms
53,096 KB
testcase_04 AC 38 ms
51,940 KB
testcase_05 AC 39 ms
52,676 KB
testcase_06 AC 38 ms
51,696 KB
testcase_07 AC 38 ms
52,176 KB
testcase_08 AC 37 ms
53,132 KB
testcase_09 AC 38 ms
53,764 KB
testcase_10 AC 154 ms
92,512 KB
testcase_11 AC 119 ms
85,040 KB
testcase_12 AC 93 ms
77,704 KB
testcase_13 AC 86 ms
76,952 KB
testcase_14 AC 138 ms
85,312 KB
testcase_15 AC 90 ms
76,884 KB
testcase_16 AC 102 ms
80,432 KB
testcase_17 AC 133 ms
84,504 KB
testcase_18 AC 119 ms
82,896 KB
testcase_19 AC 103 ms
79,264 KB
testcase_20 AC 120 ms
82,644 KB
testcase_21 AC 122 ms
84,936 KB
testcase_22 AC 89 ms
77,040 KB
testcase_23 AC 87 ms
77,012 KB
testcase_24 AC 88 ms
77,140 KB
testcase_25 AC 104 ms
79,636 KB
testcase_26 AC 88 ms
77,412 KB
testcase_27 AC 119 ms
82,208 KB
testcase_28 AC 93 ms
77,064 KB
testcase_29 AC 135 ms
85,140 KB
testcase_30 AC 162 ms
89,844 KB
testcase_31 AC 120 ms
82,652 KB
testcase_32 AC 87 ms
77,308 KB
testcase_33 AC 113 ms
85,312 KB
testcase_34 AC 107 ms
80,568 KB
testcase_35 AC 149 ms
87,780 KB
testcase_36 AC 38 ms
52,700 KB
testcase_37 AC 37 ms
52,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
D = []
for i in range(1, N + 1):
    D.append(list(map(int, input().split())))
inf = 10 ** 18
dp = [[-inf, -inf] for i in range(N + 1)]
dp[0][0] = 0
for i in range(N):
    p, a = D[i]
    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