結果

問題 No.1160 Strange Bowling
ユーザー MitarushiMitarushi
提出日時 2020-08-11 15:34:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 591 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,520 KB
最終ジャッジ日時 2024-10-09 11:26:17
合計ジャッジ時間 8,324 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 410 ms
33,536 KB
testcase_11 AC 238 ms
23,040 KB
testcase_12 AC 126 ms
16,640 KB
testcase_13 AC 77 ms
13,440 KB
testcase_14 AC 375 ms
31,232 KB
testcase_15 AC 108 ms
15,360 KB
testcase_16 AC 130 ms
16,768 KB
testcase_17 AC 350 ms
29,824 KB
testcase_18 AC 246 ms
23,808 KB
testcase_19 AC 174 ms
19,584 KB
testcase_20 AC 299 ms
26,752 KB
testcase_21 AC 230 ms
23,040 KB
testcase_22 AC 92 ms
14,464 KB
testcase_23 AC 91 ms
14,464 KB
testcase_24 AC 86 ms
14,080 KB
testcase_25 AC 187 ms
20,224 KB
testcase_26 AC 107 ms
15,360 KB
testcase_27 AC 273 ms
24,832 KB
testcase_28 AC 115 ms
15,744 KB
testcase_29 AC 371 ms
31,104 KB
testcase_30 AC 591 ms
43,520 KB
testcase_31 AC 320 ms
28,160 KB
testcase_32 AC 114 ms
15,616 KB
testcase_33 AC 231 ms
22,656 KB
testcase_34 AC 221 ms
22,400 KB
testcase_35 AC 491 ms
38,400 KB
testcase_36 AC 29 ms
10,624 KB
testcase_37 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
pa = [[int(i) for i in input().split()] for _ in range(n)]

dp = [[0] * 2 for _ in range(n)]
dp[0] = pa[0]

for i in range(1, n):
    dp[i][0] = max(dp[i - 1][0] + pa[i][0], dp[i - 1][1] + pa[i][0] * 2)
    dp[i][1] = max(dp[i - 1][0] + pa[i][1], dp[i - 1][1] + pa[i][1] * 2)

print(max(dp[-1]))
0