結果

問題 No.1012 荷物収集
ユーザー otamay6otamay6
提出日時 2019-11-27 19:41:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 950 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 38,808 KB
最終ジャッジ日時 2024-10-14 12:41:42
合計ジャッジ時間 21,734 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 693 ms
38,808 KB
testcase_05 AC 681 ms
38,676 KB
testcase_06 AC 696 ms
38,676 KB
testcase_07 AC 696 ms
38,680 KB
testcase_08 AC 694 ms
38,684 KB
testcase_09 AC 689 ms
38,652 KB
testcase_10 AC 689 ms
38,020 KB
testcase_11 AC 698 ms
38,152 KB
testcase_12 AC 689 ms
38,644 KB
testcase_13 AC 688 ms
38,776 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 34 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 33 ms
10,752 KB
testcase_18 AC 33 ms
10,752 KB
testcase_19 AC 32 ms
10,624 KB
testcase_20 AC 32 ms
10,624 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 33 ms
10,752 KB
testcase_23 AC 32 ms
10,624 KB
testcase_24 AC 596 ms
25,948 KB
testcase_25 AC 837 ms
32,500 KB
testcase_26 AC 490 ms
28,004 KB
testcase_27 AC 124 ms
15,104 KB
testcase_28 AC 825 ms
34,964 KB
testcase_29 AC 555 ms
33,368 KB
testcase_30 AC 888 ms
35,964 KB
testcase_31 AC 220 ms
18,084 KB
testcase_32 AC 259 ms
17,860 KB
testcase_33 AC 359 ms
20,556 KB
testcase_34 AC 360 ms
21,228 KB
testcase_35 AC 709 ms
32,400 KB
testcase_36 AC 279 ms
20,116 KB
testcase_37 AC 514 ms
32,016 KB
testcase_38 AC 642 ms
27,052 KB
testcase_39 AC 298 ms
19,828 KB
testcase_40 AC 334 ms
19,652 KB
testcase_41 AC 950 ms
35,640 KB
testcase_42 AC 420 ms
21,204 KB
testcase_43 AC 610 ms
28,672 KB
testcase_44 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,Q = map(int,input().split())
A=[(0,0)]
for i in range(N):
    a,b=map(int,input().split())
    A.append((a,b))
A.sort()
X = list(map(int,input().split()))

Sxw = [0]
Sw = [0]
for i in range(N+1):
    Sxw.append(Sxw[i]+A[i][0]*A[i][1])
    Sw.append(Sw[i]+A[i][1])

k = 0
for q in range(Q):
    k=bisect.bisect_left(A,(X[q],0))
    print(Sxw[N+1]-2*Sxw[k]+X[q]*(2*Sw[k]-Sw[N+1]))
0