結果

問題 No.818 Dinner time
ユーザー shotoyooshotoyoo
提出日時 2021-07-22 16:04:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 87,824 KB
最終ジャッジ日時 2024-07-17 14:55:12
合計ジャッジ時間 4,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,096 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 39 ms
52,608 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 39 ms
52,480 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 108 ms
83,072 KB
testcase_23 AC 113 ms
82,944 KB
testcase_24 AC 134 ms
87,468 KB
testcase_25 AC 108 ms
82,940 KB
testcase_26 WA -
testcase_27 AC 122 ms
85,424 KB
testcase_28 AC 111 ms
83,236 KB
testcase_29 AC 127 ms
85,504 KB
testcase_30 AC 120 ms
85,172 KB
testcase_31 AC 118 ms
85,632 KB
testcase_32 AC 103 ms
83,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,m = list(map(int, input().split()))
ab = [list(map(int, input().split())) for _ in range(n)]
v0 = [max(a,b) for a,b in ab]
v1 = [max(m*a, (m-1)*a+b, b) for a,b in ab]
cummax = 0
cum0 = 0
cum1 = 0
ans = -float("inf")
for j in range(n):
    cum0 += v0[j]
    ans = max(ans, cum0 + cummax)
#     print(cum0, cummax)
    cum1 += v1[j]
    cummax = max(cummax, -cum0 + cum1)
ans = max(ans, cum0 + cummax)
print(ans)
0