結果

問題 No.818 Dinner time
ユーザー convexineqconvexineq
提出日時 2021-03-23 07:07:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 86,468 KB
最終ジャッジ日時 2024-05-03 19:16:45
合計ジャッジ時間 4,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 WA -
testcase_10 AC 37 ms
51,968 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 40 ms
52,608 KB
testcase_15 AC 39 ms
52,608 KB
testcase_16 AC 38 ms
52,352 KB
testcase_17 AC 172 ms
86,188 KB
testcase_18 AC 142 ms
83,072 KB
testcase_19 AC 138 ms
82,808 KB
testcase_20 AC 162 ms
84,728 KB
testcase_21 AC 145 ms
82,688 KB
testcase_22 AC 158 ms
82,560 KB
testcase_23 AC 169 ms
83,968 KB
testcase_24 AC 193 ms
86,468 KB
testcase_25 AC 167 ms
83,712 KB
testcase_26 AC 163 ms
82,432 KB
testcase_27 AC 188 ms
85,376 KB
testcase_28 AC 174 ms
84,096 KB
testcase_29 AC 191 ms
86,016 KB
testcase_30 AC 182 ms
84,300 KB
testcase_31 AC 183 ms
85,376 KB
testcase_32 AC 144 ms
82,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
ab = [list(map(int,input().split())) for _ in range(n)]
X,Y,Z,W = [0]*4
for a,b in ab:
    x = a*m
    y = a*(m-1) + b
    X,Y,Z,W = X+max(x,y,b), max(X,Y)+max(a+b,b), max(X,Y,Z)+max(a,b), max(X,Y,Z,W)
print(max(X,Y,Z,W))
0