結果

問題 No.818 Dinner time
ユーザー RyutaroYamauchiRyutaroYamauchi
提出日時 2019-04-25 17:46:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 502 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 91,772 KB
最終ジャッジ日時 2024-11-20 20:46:57
合計ジャッジ時間 59,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 445 ms
48,684 KB
testcase_01 AC 449 ms
90,768 KB
testcase_02 AC 458 ms
48,680 KB
testcase_03 AC 450 ms
88,336 KB
testcase_04 AC 457 ms
49,080 KB
testcase_05 AC 454 ms
89,488 KB
testcase_06 AC 459 ms
48,836 KB
testcase_07 AC 447 ms
90,744 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 455 ms
48,676 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 446 ms
90,220 KB
testcase_14 AC 443 ms
49,084 KB
testcase_15 AC 456 ms
91,772 KB
testcase_16 AC 480 ms
49,060 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

A = []
B = []

N, M = map(int, input().strip().split(' '))

for i in range(N):
    a, b = map(int, input().strip().split(' '))
    A.append(a)
    B.append(b)

A = np.array(A)
B = np.array(B)

S0 = np.maximum(np.maximum(A * M, A * (M - 1) + B), B)
S1 = np.maximum(A, B)

ans = None

for k in range(1, N+1):
    score = S0[:k].sum()
    if k != N:
        score += np.cumsum(S1[k:]).max()

    if ans is None:
        ans = score

    if score > ans:
        ans = score

print(ans)
0