結果

問題 No.1160 Strange Bowling
ユーザー rikuiikurarikuiikura
提出日時 2020-08-22 18:19:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 442 ms / 2,000 ms
コード長 1,096 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-10-15 12:02:02
合計ジャッジ時間 6,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,136 KB
testcase_01 AC 35 ms
11,136 KB
testcase_02 AC 35 ms
11,136 KB
testcase_03 AC 34 ms
11,136 KB
testcase_04 AC 35 ms
11,264 KB
testcase_05 AC 34 ms
11,264 KB
testcase_06 AC 35 ms
11,264 KB
testcase_07 AC 34 ms
11,136 KB
testcase_08 AC 33 ms
11,264 KB
testcase_09 AC 35 ms
11,136 KB
testcase_10 AC 318 ms
27,620 KB
testcase_11 AC 187 ms
20,064 KB
testcase_12 AC 109 ms
15,488 KB
testcase_13 AC 72 ms
13,312 KB
testcase_14 AC 292 ms
26,128 KB
testcase_15 AC 93 ms
14,464 KB
testcase_16 AC 110 ms
15,616 KB
testcase_17 AC 271 ms
24,848 KB
testcase_18 AC 199 ms
20,832 KB
testcase_19 AC 145 ms
17,536 KB
testcase_20 AC 230 ms
22,800 KB
testcase_21 AC 188 ms
20,112 KB
testcase_22 AC 83 ms
13,952 KB
testcase_23 AC 83 ms
13,824 KB
testcase_24 AC 78 ms
13,568 KB
testcase_25 AC 153 ms
17,920 KB
testcase_26 AC 92 ms
14,592 KB
testcase_27 AC 213 ms
21,600 KB
testcase_28 AC 99 ms
15,104 KB
testcase_29 AC 288 ms
25,880 KB
testcase_30 AC 442 ms
35,456 KB
testcase_31 AC 251 ms
23,976 KB
testcase_32 AC 100 ms
14,848 KB
testcase_33 AC 184 ms
20,016 KB
testcase_34 AC 177 ms
19,756 KB
testcase_35 AC 385 ms
31,404 KB
testcase_36 AC 35 ms
11,264 KB
testcase_37 AC 34 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians, gcd
from itertools import accumulate, permutations, combinations, product
from operator import itemgetter, mul
from copy import deepcopy
from string import ascii_lowercase, ascii_uppercase, digits
from bisect import bisect, bisect_left
from heapq import heappush, heappop
from functools import reduce
INPUT = lambda: sys.stdin.readline().rstrip()
INT = lambda: int(INPUT())
MAP = lambda: map(int, INPUT().split())
S_MAP = lambda: map(str, INPUT().split())
LIST = lambda: list(map(int, INPUT().split()))
S_LIST = lambda: list(map(str, INPUT().split()))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

N = INT()
P, A = [], []
for i in range(N):
    p, a = MAP()
    P.append(p)
    A.append(a)

dp = [[0] * 2 for _ in range(N+1)]

dp[0][0] = -INF
dp[0][1] = 0

for i in range(1, N+1):
    dp[i][0] = max(dp[i-1][0] + 2 * A[i-1], dp[i-1][1] + A[i-1])
    dp[i][1] = max(dp[i-1][0] + 2 * P[i-1], dp[i-1][1] + P[i-1])
print(max(dp[-1]))
0