結果

問題 No.1012 荷物収集
ユーザー takakintakakin
提出日時 2020-03-22 20:03:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 687 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,108 KB
最終ジャッジ日時 2024-12-25 21:24:00
合計ジャッジ時間 18,671 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
10,624 KB
testcase_01 AC 33 ms
10,496 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 544 ms
43,984 KB
testcase_05 AC 501 ms
44,108 KB
testcase_06 AC 508 ms
43,984 KB
testcase_07 AC 515 ms
43,984 KB
testcase_08 AC 523 ms
43,984 KB
testcase_09 AC 520 ms
43,852 KB
testcase_10 AC 528 ms
43,084 KB
testcase_11 AC 521 ms
43,084 KB
testcase_12 AC 509 ms
43,980 KB
testcase_13 AC 521 ms
44,104 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 34 ms
10,752 KB
testcase_16 AC 36 ms
10,624 KB
testcase_17 AC 36 ms
10,752 KB
testcase_18 AC 32 ms
10,752 KB
testcase_19 AC 35 ms
10,752 KB
testcase_20 AC 32 ms
10,880 KB
testcase_21 AC 33 ms
10,880 KB
testcase_22 AC 32 ms
10,624 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 471 ms
30,340 KB
testcase_25 AC 681 ms
38,196 KB
testcase_26 AC 340 ms
28,948 KB
testcase_27 AC 101 ms
15,064 KB
testcase_28 AC 569 ms
38,244 KB
testcase_29 AC 413 ms
32,556 KB
testcase_30 AC 603 ms
40,772 KB
testcase_31 AC 170 ms
18,636 KB
testcase_32 AC 183 ms
19,256 KB
testcase_33 AC 258 ms
22,388 KB
testcase_34 AC 252 ms
22,836 KB
testcase_35 AC 508 ms
34,828 KB
testcase_36 AC 227 ms
20,696 KB
testcase_37 AC 405 ms
31,264 KB
testcase_38 AC 453 ms
31,708 KB
testcase_39 AC 220 ms
21,256 KB
testcase_40 AC 242 ms
21,920 KB
testcase_41 AC 687 ms
41,468 KB
testcase_42 AC 284 ms
24,620 KB
testcase_43 AC 430 ms
31,376 KB
testcase_44 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,q=map(int,input().split())
X,XW=[],[]
tot_xw,tot_w=0,0
for _ in range(n):
  x,w=map(int,input().split())
  tot_xw+=x*w
  tot_w+=w
  XW.append((x,w))
  X.append(x)
XW.sort(key=lambda x:x[0])
X.sort()
A,B=[0]*(n+1),[0]*(n+1)
A[0]=-tot_w
B[0]=tot_xw
for i in range(n):
  A[i+1]=A[i]+2*XW[i][1]
  B[i+1]=B[i]-2*XW[i][0]*XW[i][1]

import bisect
Q=[int(i) for i in input().split()]
for q in Q:
  ind=bisect.bisect_left(X,q)
  print(A[ind]*q+B[ind])
0