結果

問題 No.1012 荷物収集
ユーザー NoneNone
提出日時 2021-02-26 20:56:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,416 KB
最終ジャッジ日時 2024-10-02 13:21:42
合計ジャッジ時間 11,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 203 ms
106,288 KB
testcase_05 AC 206 ms
106,156 KB
testcase_06 AC 204 ms
106,156 KB
testcase_07 AC 204 ms
106,284 KB
testcase_08 AC 201 ms
106,416 KB
testcase_09 AC 204 ms
106,160 KB
testcase_10 AC 203 ms
106,416 KB
testcase_11 AC 205 ms
106,032 KB
testcase_12 AC 203 ms
106,292 KB
testcase_13 AC 202 ms
106,288 KB
testcase_14 AC 46 ms
58,752 KB
testcase_15 AC 58 ms
63,616 KB
testcase_16 AC 50 ms
60,288 KB
testcase_17 AC 53 ms
62,976 KB
testcase_18 AC 52 ms
61,824 KB
testcase_19 AC 46 ms
58,496 KB
testcase_20 AC 45 ms
54,656 KB
testcase_21 AC 49 ms
60,416 KB
testcase_22 AC 51 ms
61,312 KB
testcase_23 AC 49 ms
60,416 KB
testcase_24 AC 246 ms
95,340 KB
testcase_25 AC 316 ms
101,936 KB
testcase_26 AC 254 ms
94,336 KB
testcase_27 AC 124 ms
78,732 KB
testcase_28 AC 319 ms
100,276 KB
testcase_29 AC 277 ms
95,676 KB
testcase_30 AC 336 ms
104,368 KB
testcase_31 AC 141 ms
84,060 KB
testcase_32 AC 160 ms
82,560 KB
testcase_33 AC 177 ms
86,388 KB
testcase_34 AC 176 ms
87,424 KB
testcase_35 AC 288 ms
97,844 KB
testcase_36 AC 155 ms
88,072 KB
testcase_37 AC 265 ms
93,884 KB
testcase_38 AC 259 ms
90,884 KB
testcase_39 AC 177 ms
83,704 KB
testcase_40 AC 181 ms
83,884 KB
testcase_41 AC 345 ms
96,944 KB
testcase_42 AC 199 ms
87,744 KB
testcase_43 AC 259 ms
93,872 KB
testcase_44 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
N,Q=map(int, input().split())
data=[]
X=[]
for _ in range(N):
    x,w=map(int, input().split())
    data.append((x,w))
    X.append(x)
X.sort()
data.sort(key=lambda x:x[0])
S=[0]
T=[0]
for x,w in data:
    S.append(S[-1]+w)
    T.append(T[-1]+x*w)

for x in map(int, input().split()):
    i=bisect_left(X,x)
    print(S[i]*x-T[i] + (T[-1]-T[i])-x*(S[-1]-S[i]))
0