結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー KudeKude
提出日時 2020-10-09 21:46:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 697 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 125,180 KB
最終ジャッジ日時 2024-07-20 10:25:45
合計ジャッジ時間 15,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
72,704 KB
testcase_01 AC 54 ms
73,216 KB
testcase_02 AC 52 ms
72,704 KB
testcase_03 AC 51 ms
72,960 KB
testcase_04 AC 52 ms
72,960 KB
testcase_05 AC 52 ms
73,088 KB
testcase_06 AC 51 ms
73,216 KB
testcase_07 AC 52 ms
72,960 KB
testcase_08 AC 53 ms
73,216 KB
testcase_09 AC 53 ms
73,600 KB
testcase_10 AC 53 ms
72,960 KB
testcase_11 AC 50 ms
73,088 KB
testcase_12 AC 55 ms
73,216 KB
testcase_13 AC 54 ms
72,832 KB
testcase_14 AC 52 ms
73,344 KB
testcase_15 AC 53 ms
73,216 KB
testcase_16 AC 55 ms
73,600 KB
testcase_17 AC 56 ms
72,960 KB
testcase_18 AC 146 ms
124,476 KB
testcase_19 AC 138 ms
120,304 KB
testcase_20 AC 113 ms
103,920 KB
testcase_21 AC 68 ms
83,200 KB
testcase_22 AC 117 ms
105,156 KB
testcase_23 AC 68 ms
82,048 KB
testcase_24 AC 130 ms
114,764 KB
testcase_25 AC 112 ms
104,344 KB
testcase_26 AC 79 ms
94,080 KB
testcase_27 AC 68 ms
81,536 KB
testcase_28 AC 152 ms
124,796 KB
testcase_29 AC 150 ms
125,008 KB
testcase_30 AC 158 ms
125,172 KB
testcase_31 AC 150 ms
124,620 KB
testcase_32 AC 149 ms
124,788 KB
testcase_33 AC 152 ms
124,660 KB
testcase_34 AC 147 ms
125,180 KB
testcase_35 AC 147 ms
124,916 KB
testcase_36 AC 151 ms
124,620 KB
testcase_37 AC 154 ms
124,916 KB
testcase_38 AC 152 ms
125,048 KB
testcase_39 AC 152 ms
124,788 KB
testcase_40 AC 159 ms
124,916 KB
testcase_41 AC 154 ms
124,916 KB
testcase_42 AC 153 ms
124,792 KB
testcase_43 AC 54 ms
72,832 KB
testcase_44 AC 55 ms
72,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
d = [0] * (2 * 10 ** 6 + 3)
base = 10 ** 6 + 1
for ai, bi in zip(a, b):
    d[0] -= bi
    d[base + ai] += bi * 2
now = d[0]
for x in range(1, 2 * 10 ** 6 + 3):
    now += d[x]
    if now >= 0:
        break
x -= base
ans = 0
for ai, bi in zip(a, b):
    ans += bi * abs(x - ai)
print(x, ans)
0