結果

問題 No.1012 荷物収集
ユーザー ayaoniayaoni
提出日時 2020-12-09 16:00:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 667 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,984 KB
最終ジャッジ日時 2024-09-19 01:15:33
合計ジャッジ時間 15,796 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 214 ms
121,984 KB
testcase_05 AC 217 ms
121,472 KB
testcase_06 AC 217 ms
121,472 KB
testcase_07 AC 215 ms
121,728 KB
testcase_08 AC 215 ms
121,856 KB
testcase_09 AC 217 ms
121,856 KB
testcase_10 AC 215 ms
121,472 KB
testcase_11 AC 214 ms
121,472 KB
testcase_12 AC 215 ms
121,472 KB
testcase_13 AC 213 ms
121,472 KB
testcase_14 AC 43 ms
52,736 KB
testcase_15 AC 52 ms
60,672 KB
testcase_16 AC 47 ms
53,120 KB
testcase_17 AC 54 ms
60,416 KB
testcase_18 AC 50 ms
59,136 KB
testcase_19 AC 44 ms
53,120 KB
testcase_20 AC 44 ms
53,504 KB
testcase_21 AC 45 ms
53,760 KB
testcase_22 AC 47 ms
53,760 KB
testcase_23 AC 45 ms
52,864 KB
testcase_24 AC 451 ms
108,800 KB
testcase_25 AC 596 ms
103,808 KB
testcase_26 AC 334 ms
87,040 KB
testcase_27 AC 127 ms
78,848 KB
testcase_28 AC 615 ms
111,104 KB
testcase_29 AC 368 ms
89,344 KB
testcase_30 AC 630 ms
112,384 KB
testcase_31 AC 256 ms
91,264 KB
testcase_32 AC 216 ms
86,272 KB
testcase_33 AC 329 ms
103,040 KB
testcase_34 AC 358 ms
108,928 KB
testcase_35 AC 515 ms
100,864 KB
testcase_36 AC 316 ms
95,232 KB
testcase_37 AC 367 ms
89,088 KB
testcase_38 AC 475 ms
107,776 KB
testcase_39 AC 241 ms
88,576 KB
testcase_40 AC 282 ms
93,056 KB
testcase_41 AC 667 ms
118,784 KB
testcase_42 AC 334 ms
96,640 KB
testcase_43 AC 454 ms
102,400 KB
testcase_44 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,Q = MI()

X = []
a,b = 0,0
c,d = 0,0
for _ in range(N):
    x,w = MI()
    X.append((x,w,0))
    b += w
    d += x*w

Y = LI()
for i in range(Q):
    X.append((Y[i],0,i))

X.sort()

ANS = [0]*Q
for x,w,i in X:
    if w == 0:
        ANS[i] = x*(a-b)-(c-d)
    else:
        a += w
        b -= w
        c += x*w
        d -= x*w

print(*ANS,sep='\n')
0