結果

問題 No.818 Dinner time
ユーザー RyutaroYamauchiRyutaroYamauchi
提出日時 2019-04-25 19:02:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,328 KB
最終ジャッジ日時 2024-11-21 06:35:10
合計ジャッジ時間 23,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 516 ms
44,328 KB
testcase_01 AC 516 ms
44,460 KB
testcase_02 AC 505 ms
44,460 KB
testcase_03 AC 508 ms
44,460 KB
testcase_04 AC 495 ms
44,212 KB
testcase_05 AC 504 ms
44,464 KB
testcase_06 AC 509 ms
44,200 KB
testcase_07 AC 516 ms
44,452 KB
testcase_08 AC 502 ms
44,204 KB
testcase_09 AC 505 ms
44,200 KB
testcase_10 AC 509 ms
44,344 KB
testcase_11 AC 510 ms
44,336 KB
testcase_12 AC 513 ms
44,716 KB
testcase_13 AC 505 ms
44,724 KB
testcase_14 AC 518 ms
44,076 KB
testcase_15 AC 507 ms
44,468 KB
testcase_16 AC 515 ms
44,592 KB
testcase_17 AC 817 ms
48,944 KB
testcase_18 AC 700 ms
46,248 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 701 ms
46,632 KB
testcase_23 AC 736 ms
47,664 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 703 ms
46,568 KB
testcase_27 WA -
testcase_28 AC 738 ms
47,284 KB
testcase_29 AC 795 ms
48,760 KB
testcase_30 AC 753 ms
48,052 KB
testcase_31 AC 776 ms
48,660 KB
testcase_32 AC 743 ms
47,640 KB
権限があれば一括ダウンロードができます

ソースコード

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, dtype=np.int64)
B = np.array(B, dtype=np.int64)

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

S0 = np.cumsum(S0)
S1 = np.cumsum(S1)
S2 = S1.max() - S1
S = S0 + S2

print(S.max())
0