結果

問題 No.1160 Strange Bowling
ユーザー KazunKazun
提出日時 2020-08-31 14:18:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 84,620 KB
最終ジャッジ日時 2024-11-15 22:31:18
合計ジャッジ時間 5,361 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,764 KB
testcase_01 AC 38 ms
53,216 KB
testcase_02 AC 37 ms
52,768 KB
testcase_03 AC 38 ms
52,544 KB
testcase_04 AC 38 ms
52,996 KB
testcase_05 AC 44 ms
52,352 KB
testcase_06 AC 38 ms
53,984 KB
testcase_07 AC 38 ms
52,240 KB
testcase_08 AC 39 ms
52,316 KB
testcase_09 AC 38 ms
53,432 KB
testcase_10 AC 121 ms
84,620 KB
testcase_11 AC 99 ms
80,488 KB
testcase_12 AC 84 ms
76,528 KB
testcase_13 AC 83 ms
77,440 KB
testcase_14 AC 107 ms
78,060 KB
testcase_15 AC 82 ms
76,428 KB
testcase_16 AC 84 ms
76,664 KB
testcase_17 AC 104 ms
77,544 KB
testcase_18 AC 100 ms
80,752 KB
testcase_19 AC 88 ms
76,884 KB
testcase_20 AC 100 ms
77,296 KB
testcase_21 AC 98 ms
80,464 KB
testcase_22 AC 83 ms
76,884 KB
testcase_23 AC 80 ms
76,568 KB
testcase_24 AC 82 ms
77,308 KB
testcase_25 AC 90 ms
76,944 KB
testcase_26 AC 81 ms
77,096 KB
testcase_27 AC 96 ms
78,800 KB
testcase_28 AC 82 ms
76,492 KB
testcase_29 AC 109 ms
77,844 KB
testcase_30 AC 119 ms
78,620 KB
testcase_31 AC 97 ms
77,536 KB
testcase_32 AC 80 ms
76,332 KB
testcase_33 AC 89 ms
76,952 KB
testcase_34 AC 89 ms
77,020 KB
testcase_35 AC 114 ms
78,392 KB
testcase_36 AC 39 ms
52,220 KB
testcase_37 AC 39 ms
52,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
P=[0]*(N+1)
A=[0]*(N+1)

for i in range(1,N+1):
    p,a=map(int,input().split())
    P[i]=p
    A[i]=a

S=[[0,0] for _ in range(N+1)]

S[-1][0]=P[-1]
S[-1][1]=A[-1]

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