結果

問題 No.1160 Strange Bowling
ユーザー yansi819yansi819
提出日時 2024-05-08 09:34:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 84,692 KB
最終ジャッジ日時 2024-12-14 12:29:46
合計ジャッジ時間 5,716 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
53,984 KB
testcase_02 AC 37 ms
52,008 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
52,888 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,248 KB
testcase_09 AC 39 ms
52,132 KB
testcase_10 WA -
testcase_11 AC 97 ms
80,564 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 105 ms
77,788 KB
testcase_15 AC 80 ms
76,344 KB
testcase_16 AC 84 ms
76,836 KB
testcase_17 AC 104 ms
77,908 KB
testcase_18 AC 99 ms
80,740 KB
testcase_19 WA -
testcase_20 AC 98 ms
77,652 KB
testcase_21 WA -
testcase_22 AC 82 ms
76,560 KB
testcase_23 AC 83 ms
76,588 KB
testcase_24 WA -
testcase_25 AC 89 ms
76,924 KB
testcase_26 AC 81 ms
76,600 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 115 ms
78,652 KB
testcase_31 AC 97 ms
77,372 KB
testcase_32 AC 77 ms
76,580 KB
testcase_33 AC 87 ms
76,976 KB
testcase_34 AC 88 ms
76,928 KB
testcase_35 AC 112 ms
78,360 KB
testcase_36 AC 39 ms
52,308 KB
testcase_37 AC 38 ms
52,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
p, a = [0] * (N + 1), [0] * (N + 1)
for i in range(1, N + 1):
    p[i], a[i] = map(int, input().split())
dp = [[0, 0] for i in range(N + 1)]
dp[0] = [-p[1], -a[1]]
for i in range(1, N + 1):
    dp[i][0] = max(dp[i - 1][0] + p[i], dp[i - 1][1] + 2 * p[i])
    dp[i][1] = max(dp[i - 1][0] + a[i], dp[i - 1][1] + 2 * a[i])

print(dp[N][0])
0