結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 WA -
testcase_10 AC 38 ms
51,584 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 40 ms
52,480 KB
testcase_15 AC 41 ms
52,096 KB
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 159 ms
84,736 KB
testcase_18 AC 138 ms
83,072 KB
testcase_19 AC 137 ms
82,816 KB
testcase_20 AC 153 ms
84,736 KB
testcase_21 AC 141 ms
82,688 KB
testcase_22 AC 153 ms
82,304 KB
testcase_23 AC 165 ms
82,688 KB
testcase_24 AC 182 ms
86,656 KB
testcase_25 AC 161 ms
82,944 KB
testcase_26 AC 158 ms
82,432 KB
testcase_27 AC 181 ms
84,608 KB
testcase_28 AC 168 ms
83,456 KB
testcase_29 AC 185 ms
85,504 KB
testcase_30 AC 171 ms
84,480 KB
testcase_31 AC 171 ms
84,736 KB
testcase_32 AC 140 ms
83,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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