結果

問題 No.1160 Strange Bowling
ユーザー 37zigen37zigen
提出日時 2020-08-19 06:02:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-10-12 03:32:54
合計ジャッジ時間 7,336 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 366 ms
21,888 KB
testcase_11 AC 211 ms
16,768 KB
testcase_12 AC 117 ms
13,568 KB
testcase_13 AC 74 ms
12,032 KB
testcase_14 AC 336 ms
20,864 KB
testcase_15 AC 101 ms
13,056 KB
testcase_16 AC 120 ms
13,696 KB
testcase_17 AC 312 ms
20,096 KB
testcase_18 AC 229 ms
17,024 KB
testcase_19 AC 160 ms
14,976 KB
testcase_20 AC 276 ms
18,688 KB
testcase_21 AC 215 ms
16,768 KB
testcase_22 AC 85 ms
12,544 KB
testcase_23 AC 86 ms
12,416 KB
testcase_24 AC 81 ms
12,416 KB
testcase_25 AC 171 ms
15,360 KB
testcase_26 AC 100 ms
13,056 KB
testcase_27 AC 240 ms
17,664 KB
testcase_28 AC 108 ms
13,312 KB
testcase_29 AC 337 ms
20,736 KB
testcase_30 AC 500 ms
27,776 KB
testcase_31 AC 290 ms
19,328 KB
testcase_32 AC 107 ms
13,056 KB
testcase_33 AC 205 ms
16,512 KB
testcase_34 AC 202 ms
16,512 KB
testcase_35 AC 435 ms
24,448 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=0
p=[0]*(N+1)
a=[0]*(N+1)
dp1=[0]*(N+1)
dp2=[0]*(N+1)
for i in range(N):
    p[i],a[i]=map(int,input().split())
for i in range(N-1,-1,-1):
    dp1[i]=p[i]+max(dp1[i+1],dp2[i+1])
    dp2[i]=a[i]+max(dp1[i+1]+p[i+1],dp2[i+1]+a[i+1])
print(max(dp1[0],dp2[0]))
0