結果

問題 No.1012 荷物収集
ユーザー ohara_nohara_n
提出日時 2020-03-20 22:07:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 253 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 47,688 KB
最終ジャッジ日時 2024-12-15 06:05:03
合計ジャッジ時間 93,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,576 KB
testcase_01 AC 30 ms
44,804 KB
testcase_02 AC 29 ms
17,444 KB
testcase_03 AC 30 ms
44,672 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 46 ms
17,696 KB
testcase_15 AC 114 ms
36,276 KB
testcase_16 AC 62 ms
17,444 KB
testcase_17 AC 83 ms
41,304 KB
testcase_18 AC 60 ms
17,576 KB
testcase_19 AC 43 ms
32,832 KB
testcase_20 AC 45 ms
17,444 KB
testcase_21 AC 66 ms
24,192 KB
testcase_22 AC 58 ms
17,572 KB
testcase_23 AC 52 ms
40,892 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 30 ms
42,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
XW = []
for _ in range(N):
    x, w = map(int,input().split())
    XW.append((x,w))
Qs = list(map(int,input().split()))
for q in Qs:
    cost = 0
    for item in XW:
        cost += abs(item[0] - q)*item[1]
    print(cost)
0