結果

問題 No.1160 Strange Bowling
ユーザー first_vilfirst_vil
提出日時 2020-08-17 21:38:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-10-11 11:18:09
合計ジャッジ時間 5,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
51,584 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 86 ms
75,264 KB
testcase_11 AC 78 ms
75,776 KB
testcase_12 AC 68 ms
70,656 KB
testcase_13 AC 65 ms
67,584 KB
testcase_14 AC 84 ms
75,392 KB
testcase_15 AC 67 ms
69,888 KB
testcase_16 AC 71 ms
72,192 KB
testcase_17 AC 84 ms
75,520 KB
testcase_18 AC 81 ms
75,392 KB
testcase_19 AC 77 ms
75,264 KB
testcase_20 AC 82 ms
76,160 KB
testcase_21 AC 80 ms
75,264 KB
testcase_22 AC 67 ms
68,224 KB
testcase_23 AC 66 ms
68,096 KB
testcase_24 AC 66 ms
67,712 KB
testcase_25 AC 79 ms
75,648 KB
testcase_26 AC 68 ms
69,248 KB
testcase_27 AC 81 ms
75,520 KB
testcase_28 AC 71 ms
70,400 KB
testcase_29 AC 86 ms
75,520 KB
testcase_30 AC 84 ms
75,264 KB
testcase_31 AC 76 ms
75,008 KB
testcase_32 AC 60 ms
67,712 KB
testcase_33 AC 73 ms
75,776 KB
testcase_34 AC 72 ms
75,264 KB
testcase_35 AC 82 ms
75,264 KB
testcase_36 AC 42 ms
52,096 KB
testcase_37 AC 41 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input=sys.stdin.readline
    n=int(input())
    dp=[[0,-10**10],[0,0]]
    for i in range(n):
        p,a=map(int,input().split())
        dp[(i+1)&1][0]=max(dp[i&1][0]+p,dp[i&1][1]+p*2)
        dp[(i+1)&1][1]=max(dp[i&1][0]+a,dp[i&1][1]+a*2)
    print(max(dp[n&1]))
main()
0