結果

問題 No.1012 荷物収集
ユーザー nagitaosunagitaosu
提出日時 2020-03-20 22:53:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 865 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 116,224 KB
最終ジャッジ日時 2024-12-15 07:42:28
合計ジャッジ時間 7,383 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,664 KB
testcase_01 AC 37 ms
52,408 KB
testcase_02 AC 39 ms
54,056 KB
testcase_03 AC 39 ms
53,976 KB
testcase_04 AC 164 ms
115,968 KB
testcase_05 AC 160 ms
115,968 KB
testcase_06 AC 162 ms
116,220 KB
testcase_07 AC 166 ms
116,096 KB
testcase_08 AC 164 ms
115,892 KB
testcase_09 AC 163 ms
115,832 KB
testcase_10 AC 164 ms
115,972 KB
testcase_11 AC 168 ms
115,844 KB
testcase_12 AC 159 ms
115,968 KB
testcase_13 AC 161 ms
116,224 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 36 ms
53,616 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
for i in range(n):
    x, w = map(int, input().split())
    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