結果

問題 No.818 Dinner time
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-11-04 13:45:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 86,068 KB
最終ジャッジ日時 2024-11-04 13:45:30
合計ジャッジ時間 4,960 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,012 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 38 ms
52,432 KB
testcase_03 AC 37 ms
52,464 KB
testcase_04 AC 38 ms
53,692 KB
testcase_05 AC 37 ms
52,988 KB
testcase_06 AC 37 ms
52,644 KB
testcase_07 AC 36 ms
53,092 KB
testcase_08 AC 36 ms
52,408 KB
testcase_09 AC 36 ms
52,620 KB
testcase_10 AC 36 ms
53,172 KB
testcase_11 AC 38 ms
52,556 KB
testcase_12 AC 37 ms
53,692 KB
testcase_13 AC 38 ms
52,616 KB
testcase_14 AC 38 ms
52,976 KB
testcase_15 AC 38 ms
52,696 KB
testcase_16 AC 38 ms
53,284 KB
testcase_17 AC 146 ms
86,068 KB
testcase_18 AC 125 ms
83,260 KB
testcase_19 AC 126 ms
83,620 KB
testcase_20 AC 156 ms
85,396 KB
testcase_21 AC 132 ms
84,540 KB
testcase_22 AC 126 ms
82,664 KB
testcase_23 AC 131 ms
83,764 KB
testcase_24 AC 156 ms
86,024 KB
testcase_25 AC 136 ms
83,480 KB
testcase_26 AC 126 ms
82,708 KB
testcase_27 AC 147 ms
84,964 KB
testcase_28 AC 165 ms
83,708 KB
testcase_29 AC 152 ms
85,364 KB
testcase_30 AC 142 ms
84,288 KB
testcase_31 AC 147 ms
84,888 KB
testcase_32 AC 132 ms
84,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
dp=[[0,0,0] for _ in range(n)]
a,b=map(int, input().split())
dp[0][0]=dp[0][1]=-10**18
dp[0][2]=max(m*a,b+(m-1)*a,b)
for i in range(1, n):
  a,b=map(int,input().split())
  dp[i][0]=max(dp[i-1])
  dp[i][1]=max(dp[i-1][1:])+max(a,b)
  dp[i][2]=dp[i-1][2]+max(m*a,b+(m-1)*a,b)


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