結果

問題 No.818 Dinner time
ユーザー convexineqconvexineq
提出日時 2021-03-23 07:07:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 86,632 KB
最終ジャッジ日時 2024-11-24 22:52:57
合計ジャッジ時間 4,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,560 KB
testcase_01 AC 33 ms
52,744 KB
testcase_02 AC 36 ms
52,928 KB
testcase_03 AC 33 ms
52,628 KB
testcase_04 AC 32 ms
52,928 KB
testcase_05 AC 35 ms
53,960 KB
testcase_06 AC 32 ms
52,936 KB
testcase_07 AC 35 ms
52,696 KB
testcase_08 AC 34 ms
52,560 KB
testcase_09 WA -
testcase_10 AC 32 ms
52,360 KB
testcase_11 WA -
testcase_12 AC 34 ms
53,904 KB
testcase_13 AC 33 ms
52,948 KB
testcase_14 AC 34 ms
52,492 KB
testcase_15 AC 37 ms
54,128 KB
testcase_16 AC 36 ms
54,032 KB
testcase_17 AC 137 ms
85,804 KB
testcase_18 AC 118 ms
82,904 KB
testcase_19 AC 115 ms
82,724 KB
testcase_20 AC 129 ms
84,480 KB
testcase_21 AC 123 ms
82,716 KB
testcase_22 AC 146 ms
82,448 KB
testcase_23 AC 139 ms
83,528 KB
testcase_24 AC 159 ms
86,632 KB
testcase_25 AC 147 ms
83,704 KB
testcase_26 AC 142 ms
82,328 KB
testcase_27 AC 157 ms
85,420 KB
testcase_28 AC 155 ms
83,756 KB
testcase_29 AC 166 ms
85,440 KB
testcase_30 AC 149 ms
84,228 KB
testcase_31 AC 157 ms
85,420 KB
testcase_32 AC 115 ms
82,644 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