結果

問題 No.1012 荷物収集
ユーザー otamay6otamay6
提出日時 2019-11-17 08:26:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 388 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,716 KB
最終ジャッジ日時 2024-10-14 12:37:33
合計ジャッジ時間 15,731 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 573 ms
33,584 KB
testcase_05 AC 580 ms
33,584 KB
testcase_06 AC 580 ms
33,584 KB
testcase_07 AC 573 ms
33,544 KB
testcase_08 AC 583 ms
33,716 KB
testcase_09 AC 582 ms
33,588 KB
testcase_10 AC 586 ms
33,432 KB
testcase_11 AC 590 ms
33,316 KB
testcase_12 AC 584 ms
33,540 KB
testcase_13 AC 580 ms
33,588 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

k = 0
for q in range(Q):
    while k<=N and X[q]>=x[k]:
        k+=1
    print(Sxw[N+1]-2*Sxw[k]+X[q]*(2*Sw[k]-Sw[N+1]))
0