結果

問題 No.1160 Strange Bowling
ユーザー ThetaTheta
提出日時 2022-11-14 18:28:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,188 KB
最終ジャッジ日時 2024-09-15 21:03:41
合計ジャッジ時間 7,240 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 290 ms
16,460 KB
testcase_11 AC 171 ms
13,900 KB
testcase_12 AC 99 ms
12,288 KB
testcase_13 AC 64 ms
11,520 KB
testcase_14 AC 267 ms
16,204 KB
testcase_15 AC 85 ms
11,904 KB
testcase_16 AC 100 ms
12,288 KB
testcase_17 AC 247 ms
15,680 KB
testcase_18 AC 181 ms
14,028 KB
testcase_19 AC 130 ms
12,876 KB
testcase_20 AC 216 ms
14,916 KB
testcase_21 AC 171 ms
14,020 KB
testcase_22 AC 74 ms
11,776 KB
testcase_23 AC 74 ms
11,776 KB
testcase_24 AC 70 ms
11,776 KB
testcase_25 AC 139 ms
13,128 KB
testcase_26 AC 85 ms
12,032 KB
testcase_27 AC 196 ms
14,408 KB
testcase_28 AC 91 ms
12,032 KB
testcase_29 AC 263 ms
16,196 KB
testcase_30 AC 395 ms
20,188 KB
testcase_31 AC 232 ms
15,176 KB
testcase_32 AC 90 ms
12,160 KB
testcase_33 AC 169 ms
13,772 KB
testcase_34 AC 162 ms
13,644 KB
testcase_35 AC 352 ms
17,736 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import inf


def main():
    scores_normal = [0]
    scores_bonus = [-inf]

    for idx in range(int(input())):
        p, a = map(int, input().split())
        scores_normal.append(
            max(scores_normal[idx]+p, scores_bonus[idx]+2*p)
        )
        scores_bonus.append(
            max(scores_normal[idx]+a, scores_bonus[idx]+2*a)
        )
    print(max(scores_normal[-1], scores_bonus[-1]))


if __name__ == "__main__":
    main()
0