結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー googol_S0googol_S0
提出日時 2020-10-09 21:42:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 125,164 KB
最終ジャッジ日時 2024-07-20 10:07:59
合計ジャッジ時間 17,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
73,216 KB
testcase_01 AC 58 ms
72,960 KB
testcase_02 AC 58 ms
73,088 KB
testcase_03 AC 59 ms
72,960 KB
testcase_04 AC 60 ms
72,832 KB
testcase_05 AC 60 ms
72,832 KB
testcase_06 AC 60 ms
72,704 KB
testcase_07 AC 60 ms
72,832 KB
testcase_08 AC 61 ms
73,344 KB
testcase_09 AC 61 ms
72,960 KB
testcase_10 AC 61 ms
73,216 KB
testcase_11 AC 61 ms
73,344 KB
testcase_12 AC 63 ms
73,344 KB
testcase_13 AC 59 ms
73,344 KB
testcase_14 AC 62 ms
73,344 KB
testcase_15 AC 61 ms
73,600 KB
testcase_16 AC 61 ms
73,216 KB
testcase_17 AC 61 ms
72,960 KB
testcase_18 AC 164 ms
124,732 KB
testcase_19 AC 157 ms
120,164 KB
testcase_20 AC 128 ms
104,196 KB
testcase_21 AC 80 ms
83,456 KB
testcase_22 AC 132 ms
104,888 KB
testcase_23 AC 78 ms
82,176 KB
testcase_24 AC 149 ms
114,744 KB
testcase_25 AC 129 ms
104,368 KB
testcase_26 AC 91 ms
93,696 KB
testcase_27 AC 77 ms
82,176 KB
testcase_28 AC 171 ms
124,788 KB
testcase_29 AC 168 ms
125,000 KB
testcase_30 AC 170 ms
124,652 KB
testcase_31 AC 168 ms
124,468 KB
testcase_32 AC 169 ms
125,036 KB
testcase_33 AC 168 ms
124,660 KB
testcase_34 AC 170 ms
125,164 KB
testcase_35 AC 168 ms
124,784 KB
testcase_36 AC 174 ms
124,616 KB
testcase_37 AC 165 ms
124,912 KB
testcase_38 AC 166 ms
124,920 KB
testcase_39 AC 169 ms
124,784 KB
testcase_40 AC 169 ms
124,916 KB
testcase_41 AC 168 ms
124,532 KB
testcase_42 AC 168 ms
125,036 KB
testcase_43 AC 60 ms
73,088 KB
testcase_44 AC 60 ms
73,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
for i in range(N):
  A[i]+=10**6
C=[0]*(2*10**6+1)
for i in range(N):
  C[A[i]]+=B[i]
D=0
E=sum(B)
X=0
for i in range(len(C)):
  D+=C[i]
  if D>=(E+1)//2:
    X=i
    break
P=0
for i in range(N):
  P+=B[i]*abs(X-A[i])
print(X-10**6,P)
0