結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 39 ms
51,840 KB
testcase_17 AC 37 ms
52,096 KB
testcase_18 AC 580 ms
127,312 KB
testcase_19 AC 549 ms
121,852 KB
testcase_20 AC 323 ms
102,016 KB
testcase_21 AC 93 ms
76,800 KB
testcase_22 AC 344 ms
102,784 KB
testcase_23 AC 77 ms
76,416 KB
testcase_24 AC 455 ms
118,204 KB
testcase_25 AC 329 ms
102,528 KB
testcase_26 AC 150 ms
86,016 KB
testcase_27 AC 78 ms
76,416 KB
testcase_28 AC 603 ms
127,876 KB
testcase_29 AC 590 ms
127,828 KB
testcase_30 AC 603 ms
127,744 KB
testcase_31 AC 607 ms
127,700 KB
testcase_32 AC 609 ms
128,012 KB
testcase_33 AC 599 ms
127,876 KB
testcase_34 AC 600 ms
127,872 KB
testcase_35 AC 598 ms
127,872 KB
testcase_36 AC 592 ms
127,960 KB
testcase_37 AC 595 ms
127,748 KB
testcase_38 AC 597 ms
127,744 KB
testcase_39 AC 592 ms
128,384 KB
testcase_40 AC 595 ms
128,004 KB
testcase_41 AC 598 ms
128,000 KB
testcase_42 AC 607 ms
127,880 KB
testcase_43 AC 37 ms
52,096 KB
testcase_44 AC 37 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 = []
  ran = list(range(n))
  for i in ran:
    L.append((A[i], B[i]))
  L.sort()
  now, f = 0, 0
  s = math.floor((sum(B)+1)/2)
  for i in L:
    k, v = i
    now += v
    if now >= s:
      x = k
      break
  for i in ran:
    f += B[i]*abs(x-A[i])
  print(x, f)
main()
0