結果

問題 No.1160 Strange Bowling
ユーザー pluto77pluto77
提出日時 2022-02-18 11:23:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,720 KB
最終ジャッジ日時 2024-06-29 08:01:04
合計ジャッジ時間 7,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 383 ms
35,712 KB
testcase_11 AC 207 ms
24,320 KB
testcase_12 AC 114 ms
17,152 KB
testcase_13 AC 70 ms
13,952 KB
testcase_14 AC 340 ms
33,408 KB
testcase_15 AC 98 ms
15,872 KB
testcase_16 AC 124 ms
17,536 KB
testcase_17 AC 320 ms
31,744 KB
testcase_18 AC 226 ms
25,216 KB
testcase_19 AC 154 ms
20,352 KB
testcase_20 AC 290 ms
28,416 KB
testcase_21 AC 214 ms
24,448 KB
testcase_22 AC 85 ms
14,848 KB
testcase_23 AC 83 ms
14,976 KB
testcase_24 AC 78 ms
14,464 KB
testcase_25 AC 172 ms
21,248 KB
testcase_26 AC 100 ms
16,000 KB
testcase_27 AC 249 ms
26,496 KB
testcase_28 AC 106 ms
16,512 KB
testcase_29 AC 346 ms
33,152 KB
testcase_30 AC 512 ms
46,720 KB
testcase_31 AC 307 ms
29,952 KB
testcase_32 AC 99 ms
16,256 KB
testcase_33 AC 217 ms
24,064 KB
testcase_34 AC 208 ms
23,552 KB
testcase_35 AC 467 ms
41,472 KB
testcase_36 AC 26 ms
10,752 KB
testcase_37 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1160
n=int(input())
l=[list(map(int,input().split())) for i in range(n)]
dp=[[0]*2 for i in range(n+1)]
dp[0][0]=-float('inf')
for i,(x,y) in enumerate(l):
 dp[i+1][0]=max(dp[i][0]+2*y,dp[i][1]+y)
 dp[i+1][1]=max(dp[i][0]+2*x,dp[i][1]+x)
print(max(dp[-1]))
0