結果

問題 No.818 Dinner time
ユーザー tpynerivertpyneriver
提出日時 2019-04-22 12:09:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,368 KB
最終ジャッジ日時 2024-05-07 08:25:21
合計ジャッジ時間 7,791 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 32 ms
10,624 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 469 ms
35,640 KB
testcase_18 AC 314 ms
26,832 KB
testcase_19 AC 321 ms
27,308 KB
testcase_20 AC 442 ms
33,332 KB
testcase_21 AC 370 ms
30,220 KB
testcase_22 AC 288 ms
25,660 KB
testcase_23 AC 340 ms
28,196 KB
testcase_24 AC 489 ms
36,368 KB
testcase_25 AC 344 ms
27,932 KB
testcase_26 AC 285 ms
25,032 KB
testcase_27 AC 410 ms
32,848 KB
testcase_28 AC 350 ms
28,844 KB
testcase_29 AC 446 ms
34,512 KB
testcase_30 AC 393 ms
31,036 KB
testcase_31 AC 415 ms
32,508 KB
testcase_32 AC 356 ms
28,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
N, M = map(int, input().split())
AB = [tuple(map(int, input().split())) for _ in range(N)]
K1 = [max(t) for t in AB]
K3 = list(accumulate(K1))
ks = sum(K1)
K1 = [0] + list(accumulate(K1[::-1]))
K1 = list(accumulate(K1, min))[::-1][1:]
K2 = [max(a*M, a*(M-1)+b, b) for (a, b) in AB]
K2 = list(accumulate(K2))
print(max(j-i+ks-k for i, j, k in zip(K1, K2, K3)))
0