結果

問題 No.818 Dinner time
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-11-03 08:12:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 270 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 86,352 KB
最終ジャッジ日時 2024-11-03 08:12:21
合計ジャッジ時間 5,825 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,392 KB
testcase_01 AC 39 ms
52,404 KB
testcase_02 AC 38 ms
52,920 KB
testcase_03 AC 37 ms
53,148 KB
testcase_04 AC 38 ms
52,128 KB
testcase_05 AC 38 ms
52,612 KB
testcase_06 AC 38 ms
52,616 KB
testcase_07 AC 37 ms
53,188 KB
testcase_08 AC 37 ms
52,924 KB
testcase_09 WA -
testcase_10 AC 38 ms
52,120 KB
testcase_11 WA -
testcase_12 AC 39 ms
53,196 KB
testcase_13 AC 39 ms
53,364 KB
testcase_14 AC 39 ms
52,648 KB
testcase_15 AC 38 ms
53,120 KB
testcase_16 AC 39 ms
52,796 KB
testcase_17 AC 162 ms
86,352 KB
testcase_18 AC 127 ms
83,212 KB
testcase_19 AC 131 ms
83,356 KB
testcase_20 AC 146 ms
85,672 KB
testcase_21 AC 135 ms
84,400 KB
testcase_22 AC 126 ms
82,664 KB
testcase_23 AC 133 ms
83,480 KB
testcase_24 AC 158 ms
85,960 KB
testcase_25 AC 150 ms
83,396 KB
testcase_26 AC 128 ms
82,500 KB
testcase_27 AC 147 ms
85,232 KB
testcase_28 AC 140 ms
84,052 KB
testcase_29 AC 156 ms
85,720 KB
testcase_30 AC 142 ms
84,504 KB
testcase_31 AC 147 ms
85,100 KB
testcase_32 AC 133 ms
84,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
dp=[[0,0,0] for _ in range(n)]
for i in range(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)

if n==1:
  print(dp[-1][-1])
else:
  print(max(dp[-1]))
0