結果

問題 No.1160 Strange Bowling
ユーザー 👑 rin204rin204
提出日時 2020-08-13 06:05:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-09 18:55:04
合計ジャッジ時間 6,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 28 ms
10,496 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 330 ms
10,624 KB
testcase_11 AC 197 ms
10,624 KB
testcase_12 AC 108 ms
10,624 KB
testcase_13 AC 68 ms
10,624 KB
testcase_14 AC 305 ms
10,624 KB
testcase_15 AC 93 ms
10,752 KB
testcase_16 AC 112 ms
10,624 KB
testcase_17 AC 291 ms
10,752 KB
testcase_18 AC 205 ms
10,624 KB
testcase_19 AC 144 ms
10,752 KB
testcase_20 AC 245 ms
10,624 KB
testcase_21 AC 194 ms
10,624 KB
testcase_22 AC 81 ms
10,624 KB
testcase_23 AC 79 ms
10,624 KB
testcase_24 AC 75 ms
10,624 KB
testcase_25 AC 159 ms
10,624 KB
testcase_26 AC 92 ms
10,624 KB
testcase_27 AC 216 ms
10,624 KB
testcase_28 AC 100 ms
10,624 KB
testcase_29 AC 303 ms
10,624 KB
testcase_30 AC 443 ms
10,624 KB
testcase_31 AC 259 ms
10,624 KB
testcase_32 AC 96 ms
10,624 KB
testcase_33 AC 184 ms
10,752 KB
testcase_34 AC 180 ms
10,752 KB
testcase_35 AC 384 ms
10,624 KB
testcase_36 AC 29 ms
10,624 KB
testcase_37 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
p, a = map(int, input().split())
pp = p
aa = a
for _ in range(n - 1):
    p, a = map(int, input().split())
    p_tmp = max(pp + p, aa + p * 2)
    a_tmp = max(pp + a, aa + a * 2)
    pp = p_tmp
    aa = a_tmp
print(max(pp, aa))
0