結果

問題 No.1012 荷物収集
ユーザー nagitaosunagitaosu
提出日時 2020-03-20 23:03:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 129,120 KB
最終ジャッジ日時 2024-12-15 08:11:50
合計ジャッジ時間 10,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,260 KB
testcase_01 AC 34 ms
53,856 KB
testcase_02 AC 35 ms
52,952 KB
testcase_03 AC 33 ms
53,264 KB
testcase_04 AC 175 ms
128,980 KB
testcase_05 AC 175 ms
128,992 KB
testcase_06 AC 174 ms
128,740 KB
testcase_07 AC 183 ms
128,988 KB
testcase_08 AC 177 ms
128,732 KB
testcase_09 AC 173 ms
129,116 KB
testcase_10 AC 179 ms
129,116 KB
testcase_11 AC 177 ms
128,728 KB
testcase_12 AC 176 ms
128,992 KB
testcase_13 AC 175 ms
129,120 KB
testcase_14 AC 42 ms
59,436 KB
testcase_15 AC 47 ms
63,488 KB
testcase_16 AC 44 ms
60,548 KB
testcase_17 AC 47 ms
63,932 KB
testcase_18 AC 47 ms
62,728 KB
testcase_19 AC 39 ms
59,564 KB
testcase_20 AC 41 ms
55,660 KB
testcase_21 AC 45 ms
61,164 KB
testcase_22 AC 48 ms
62,164 KB
testcase_23 AC 47 ms
61,232 KB
testcase_24 AC 260 ms
95,836 KB
testcase_25 AC 343 ms
102,300 KB
testcase_26 AC 267 ms
102,620 KB
testcase_27 AC 120 ms
79,152 KB
testcase_28 AC 354 ms
111,848 KB
testcase_29 AC 324 ms
116,240 KB
testcase_30 AC 381 ms
110,260 KB
testcase_31 AC 116 ms
83,012 KB
testcase_32 AC 150 ms
84,468 KB
testcase_33 AC 157 ms
84,724 KB
testcase_34 AC 156 ms
84,828 KB
testcase_35 AC 321 ms
106,552 KB
testcase_36 AC 127 ms
85,056 KB
testcase_37 AC 309 ms
106,192 KB
testcase_38 AC 284 ms
103,360 KB
testcase_39 AC 176 ms
86,232 KB
testcase_40 AC 183 ms
89,096 KB
testcase_41 AC 383 ms
123,340 KB
testcase_42 AC 203 ms
92,768 KB
testcase_43 AC 284 ms
105,776 KB
testcase_44 AC 34 ms
52,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
input = sys.stdin.readline
import bisect

n, q = map(int, input().split())
places = []
r_x = [0] * n
r_1 = [0] * n
l_x = [0] * n
l_1 = [0] * n
xw = []
for i in range(n):
    x, w = map(int, input().split())
    xw.append((x, w))
xw.sort()

for i, (x, w) in enumerate(xw):
    places.append(x)
    r_x[i] = w
    l_x[i] = -w
    r_1[i] = -(x * w)
    l_1[i] = x * w

r_x_cum = [0]
r_1_cum = [0]
for item in r_x:
    r_x_cum.append(r_x_cum[-1] + item)
for item in r_1:
    r_1_cum.append(r_1_cum[-1] + item)
l_x_cum = [0]
l_1_cum = [0]
for item in l_x[::-1]:
    l_x_cum.append(l_x_cum[-1] + item)
for item in l_1[::-1]:
    l_1_cum.append(l_1_cum[-1] + item)

q = [int(item) for item in input().split()]
for np in q:
    r_index = bisect.bisect_left(places, np)
    l_index = n - r_index
    ans = r_x_cum[r_index] * np + r_1_cum[r_index]
    ans += l_x_cum[l_index] * np + l_1_cum[l_index]
    print(ans)
0