結果

問題 No.1012 荷物収集
ユーザー Ldio03Ldio03
提出日時 2020-03-20 22:47:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,608 KB
最終ジャッジ日時 2024-05-08 23:22:00
合計ジャッジ時間 12,669 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 235 ms
100,352 KB
testcase_05 AC 231 ms
100,352 KB
testcase_06 AC 231 ms
100,352 KB
testcase_07 AC 222 ms
100,352 KB
testcase_08 AC 234 ms
100,352 KB
testcase_09 AC 232 ms
100,480 KB
testcase_10 AC 231 ms
100,352 KB
testcase_11 AC 235 ms
100,224 KB
testcase_12 AC 238 ms
100,608 KB
testcase_13 AC 232 ms
100,352 KB
testcase_14 AC 50 ms
59,136 KB
testcase_15 AC 61 ms
63,744 KB
testcase_16 AC 53 ms
60,672 KB
testcase_17 AC 59 ms
62,848 KB
testcase_18 AC 57 ms
62,080 KB
testcase_19 AC 48 ms
58,752 KB
testcase_20 AC 48 ms
54,144 KB
testcase_21 AC 54 ms
60,928 KB
testcase_22 AC 57 ms
61,568 KB
testcase_23 AC 53 ms
60,288 KB
testcase_24 AC 313 ms
92,160 KB
testcase_25 AC 436 ms
97,580 KB
testcase_26 AC 345 ms
88,832 KB
testcase_27 AC 153 ms
79,616 KB
testcase_28 AC 460 ms
97,280 KB
testcase_29 AC 403 ms
90,240 KB
testcase_30 AC 481 ms
98,304 KB
testcase_31 AC 156 ms
86,016 KB
testcase_32 AC 183 ms
83,456 KB
testcase_33 AC 209 ms
88,064 KB
testcase_34 AC 204 ms
87,808 KB
testcase_35 AC 408 ms
94,080 KB
testcase_36 AC 167 ms
88,960 KB
testcase_37 AC 406 ms
89,088 KB
testcase_38 AC 347 ms
94,080 KB
testcase_39 AC 224 ms
84,224 KB
testcase_40 AC 231 ms
85,504 KB
testcase_41 AC 492 ms
100,608 KB
testcase_42 AC 255 ms
87,168 KB
testcase_43 AC 361 ms
90,928 KB
testcase_44 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect as bi
n,q=map(int,input().split())
nimotu=[list(map(int,input().split())) for i in range(n)]
nimotu.sort()
pos=[nimotu[i][0] for i in range(n)]
valuesum=[0]*n
weightsum=[0]*n
for i in range(n):
    valuesum[i]=valuesum[i-1]+nimotu[i][0]*nimotu[i][1]
    weightsum[i]=weightsum[i-1]+nimotu[i][1]
a=map(int,input().split())
for x in a:
    point=bi.bisect_left(pos,x)
    if point == n:
        print(x*weightsum[-1]-valuesum[-1])
        continue
    print(abs(x*weightsum[point-1]-valuesum[point-1]+valuesum[-1]-valuesum[point-1]-x*weightsum[-1]+x*weightsum[point-1]))
0