結果

問題 No.1160 Strange Bowling
ユーザー brthyyjpbrthyyjp
提出日時 2021-07-05 22:09:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 81,288 KB
最終ジャッジ日時 2024-07-01 12:02:45
合計ジャッジ時間 4,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,200 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 38 ms
51,456 KB
testcase_08 AC 38 ms
51,328 KB
testcase_09 AC 38 ms
51,456 KB
testcase_10 AC 119 ms
81,288 KB
testcase_11 AC 95 ms
79,380 KB
testcase_12 AC 83 ms
76,672 KB
testcase_13 AC 79 ms
76,544 KB
testcase_14 AC 111 ms
80,000 KB
testcase_15 AC 82 ms
77,056 KB
testcase_16 AC 85 ms
76,544 KB
testcase_17 AC 109 ms
79,360 KB
testcase_18 AC 101 ms
79,744 KB
testcase_19 AC 88 ms
77,564 KB
testcase_20 AC 104 ms
79,964 KB
testcase_21 AC 99 ms
79,232 KB
testcase_22 AC 80 ms
76,820 KB
testcase_23 AC 84 ms
76,160 KB
testcase_24 AC 80 ms
76,288 KB
testcase_25 AC 91 ms
77,824 KB
testcase_26 AC 82 ms
76,416 KB
testcase_27 AC 102 ms
79,488 KB
testcase_28 AC 84 ms
76,544 KB
testcase_29 AC 111 ms
79,488 KB
testcase_30 AC 127 ms
80,760 KB
testcase_31 AC 101 ms
79,412 KB
testcase_32 AC 79 ms
77,040 KB
testcase_33 AC 90 ms
78,720 KB
testcase_34 AC 89 ms
78,592 KB
testcase_35 AC 120 ms
80,128 KB
testcase_36 AC 37 ms
52,456 KB
testcase_37 AC 37 ms
52,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
PA = []
for i in range(n):
    p, a = map(int, input().split())
    PA.append((p, a))

dp = [0]*2
for i, (p, a) in enumerate(PA):
    nx = [0]*2
    if i != 0:
        nx[0] = max(dp[0]+2*a, dp[1]+a)
        nx[1] = max(dp[0]+2*p, dp[1]+p)
    else:
        nx[0] = a
        nx[1] = p
    dp = nx
print(max(dp))
0