結果

問題 No.1012 荷物収集
ユーザー vwxyzvwxyz
提出日時 2024-06-22 02:50:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 118,452 KB
最終ジャッジ日時 2024-06-22 02:51:08
合計ジャッジ時間 11,442 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,072 KB
testcase_01 AC 34 ms
53,020 KB
testcase_02 AC 33 ms
53,220 KB
testcase_03 AC 32 ms
52,872 KB
testcase_04 AC 224 ms
111,796 KB
testcase_05 AC 192 ms
112,440 KB
testcase_06 AC 189 ms
112,056 KB
testcase_07 AC 191 ms
111,800 KB
testcase_08 AC 189 ms
112,152 KB
testcase_09 AC 195 ms
112,300 KB
testcase_10 AC 192 ms
111,796 KB
testcase_11 AC 189 ms
112,060 KB
testcase_12 AC 190 ms
111,924 KB
testcase_13 AC 213 ms
111,796 KB
testcase_14 AC 41 ms
60,384 KB
testcase_15 AC 48 ms
65,824 KB
testcase_16 AC 44 ms
62,408 KB
testcase_17 AC 48 ms
63,756 KB
testcase_18 AC 46 ms
62,724 KB
testcase_19 AC 40 ms
59,360 KB
testcase_20 AC 39 ms
55,360 KB
testcase_21 AC 43 ms
62,212 KB
testcase_22 AC 44 ms
62,176 KB
testcase_23 AC 43 ms
61,516 KB
testcase_24 AC 270 ms
97,096 KB
testcase_25 AC 386 ms
99,188 KB
testcase_26 AC 280 ms
94,656 KB
testcase_27 AC 124 ms
80,124 KB
testcase_28 AC 378 ms
101,812 KB
testcase_29 AC 364 ms
101,552 KB
testcase_30 AC 407 ms
118,452 KB
testcase_31 AC 125 ms
85,560 KB
testcase_32 AC 159 ms
85,264 KB
testcase_33 AC 200 ms
88,772 KB
testcase_34 AC 187 ms
88,260 KB
testcase_35 AC 356 ms
97,972 KB
testcase_36 AC 157 ms
87,884 KB
testcase_37 AC 352 ms
98,224 KB
testcase_38 AC 286 ms
98,748 KB
testcase_39 AC 186 ms
85,304 KB
testcase_40 AC 189 ms
89,948 KB
testcase_41 AC 420 ms
110,940 KB
testcase_42 AC 205 ms
89,120 KB
testcase_43 AC 299 ms
102,192 KB
testcase_44 AC 35 ms
53,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

N,Q=map(int,input().split())
XW=[]
for i in range(N):
    x,w=map(int,input().split())
    XW.append((x,w))
XW.sort()
X,W=[],[]
for x,w in XW:
    X.append(x)
    W.append(w)
C0=[0]+W
C1=[0]+[x*w for x,w in zip(X,W)]
for i in range(1,N+1):
    C0[i]+=C0[i-1]
    C1[i]+=C1[i-1]
for x in map(int,input().split()):
    i=bisect.bisect(X,x)
    ans=x*C0[i]-C1[i]+(C1[N]-C1[i])-x*(C0[N]-C0[i])
    print(ans)
0