結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,692 KB
testcase_01 AC 38 ms
52,504 KB
testcase_02 AC 39 ms
53,004 KB
testcase_03 AC 38 ms
52,076 KB
testcase_04 AC 39 ms
52,200 KB
testcase_05 AC 39 ms
52,792 KB
testcase_06 AC 38 ms
52,592 KB
testcase_07 AC 38 ms
53,024 KB
testcase_08 AC 38 ms
52,884 KB
testcase_09 WA -
testcase_10 AC 38 ms
52,156 KB
testcase_11 WA -
testcase_12 AC 39 ms
53,980 KB
testcase_13 AC 39 ms
52,988 KB
testcase_14 AC 40 ms
52,964 KB
testcase_15 AC 39 ms
53,224 KB
testcase_16 AC 39 ms
52,500 KB
testcase_17 AC 156 ms
84,696 KB
testcase_18 AC 135 ms
82,476 KB
testcase_19 AC 135 ms
82,944 KB
testcase_20 AC 156 ms
84,928 KB
testcase_21 AC 140 ms
83,060 KB
testcase_22 AC 149 ms
82,340 KB
testcase_23 AC 156 ms
83,120 KB
testcase_24 AC 184 ms
86,392 KB
testcase_25 AC 156 ms
83,024 KB
testcase_26 AC 150 ms
82,404 KB
testcase_27 AC 174 ms
84,652 KB
testcase_28 AC 160 ms
83,500 KB
testcase_29 AC 178 ms
85,524 KB
testcase_30 AC 166 ms
84,172 KB
testcase_31 AC 167 ms
84,636 KB
testcase_32 AC 140 ms
83,204 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