結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー mesame3993mesame3993
提出日時 2021-11-19 01:11:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 127,236 KB
最終ジャッジ日時 2024-06-08 16:08:17
合計ジャッジ時間 26,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 39 ms
52,736 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 39 ms
52,480 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 45 ms
52,352 KB
testcase_17 AC 39 ms
52,352 KB
testcase_18 AC 636 ms
126,632 KB
testcase_19 AC 599 ms
120,628 KB
testcase_20 AC 354 ms
102,016 KB
testcase_21 AC 96 ms
77,312 KB
testcase_22 AC 382 ms
102,656 KB
testcase_23 AC 85 ms
76,652 KB
testcase_24 AC 497 ms
117,312 KB
testcase_25 AC 368 ms
102,400 KB
testcase_26 AC 157 ms
86,492 KB
testcase_27 AC 85 ms
77,056 KB
testcase_28 AC 655 ms
126,908 KB
testcase_29 AC 654 ms
126,804 KB
testcase_30 AC 650 ms
126,972 KB
testcase_31 AC 659 ms
126,804 KB
testcase_32 AC 658 ms
126,836 KB
testcase_33 AC 669 ms
126,972 KB
testcase_34 AC 663 ms
126,848 KB
testcase_35 AC 653 ms
126,716 KB
testcase_36 AC 644 ms
127,060 KB
testcase_37 AC 637 ms
127,236 KB
testcase_38 AC 653 ms
126,564 KB
testcase_39 AC 673 ms
127,100 KB
testcase_40 AC 649 ms
126,976 KB
testcase_41 AC 629 ms
126,860 KB
testcase_42 AC 624 ms
126,860 KB
testcase_43 AC 39 ms
52,096 KB
testcase_44 AC 40 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from sys import stdin
  import math
  readline=stdin.readline
  n = int(readline())
  A = list(map(int, readline().split()))
  B = list(map(int, readline().split()))
  L = list()
  for i in range(n):
    L.append((A[i], B[i]))
  L.sort()
  now = 0
  su = sum(B)
  for i in L:
    k, v = i
    now += v
    if now >= math.floor((su+1) / 2):
      x = k
      break
  f = 0
  for i in range(n):
    f += B[i] * abs(x-A[i])
  print(x, f)
main()
0