結果

問題 No.1160 Strange Bowling
ユーザー ああいいああいい
提出日時 2022-03-08 12:02:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 90,484 KB
最終ジャッジ日時 2024-07-23 11:27:05
合計ジャッジ時間 5,183 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,356 KB
testcase_01 AC 37 ms
52,808 KB
testcase_02 AC 37 ms
52,996 KB
testcase_03 AC 37 ms
53,244 KB
testcase_04 AC 36 ms
52,900 KB
testcase_05 AC 37 ms
52,568 KB
testcase_06 AC 36 ms
52,120 KB
testcase_07 AC 37 ms
52,532 KB
testcase_08 AC 37 ms
53,008 KB
testcase_09 AC 38 ms
52,364 KB
testcase_10 AC 125 ms
85,376 KB
testcase_11 AC 104 ms
82,624 KB
testcase_12 AC 85 ms
77,124 KB
testcase_13 AC 78 ms
77,372 KB
testcase_14 AC 120 ms
85,948 KB
testcase_15 AC 81 ms
77,088 KB
testcase_16 AC 84 ms
77,180 KB
testcase_17 AC 110 ms
80,012 KB
testcase_18 AC 103 ms
81,356 KB
testcase_19 AC 91 ms
77,628 KB
testcase_20 AC 105 ms
80,040 KB
testcase_21 AC 103 ms
82,836 KB
testcase_22 AC 80 ms
76,604 KB
testcase_23 AC 79 ms
76,656 KB
testcase_24 AC 81 ms
76,972 KB
testcase_25 AC 90 ms
78,100 KB
testcase_26 AC 81 ms
76,952 KB
testcase_27 AC 100 ms
80,092 KB
testcase_28 AC 83 ms
77,008 KB
testcase_29 AC 122 ms
86,300 KB
testcase_30 AC 140 ms
90,484 KB
testcase_31 AC 101 ms
80,028 KB
testcase_32 AC 75 ms
77,028 KB
testcase_33 AC 96 ms
82,776 KB
testcase_34 AC 89 ms
78,672 KB
testcase_35 AC 119 ms
80,876 KB
testcase_36 AC 37 ms
52,888 KB
testcase_37 AC 37 ms
52,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
l = []
for _ in range(N):
    p,a = map(int,input().split())
    l.append((p,a))

dp = [[0] * 2 for _ in range(N)]
dp[0][0] = l[-1][0]
dp[0][1] = l[-1][1]
for i in range(1,N):
    p,a = l[-1-i]
    pp,aa = l[-i]
    dp[i][1] = max(dp[i-1][0] + pp,dp[i-1][1] + aa) + a
    dp[i][0] = max(dp[i-1][0],dp[i-1][1]) + p
print(max(dp[-1]))
0