結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー tanon710tanon710
提出日時 2020-10-15 22:56:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 125,504 KB
最終ジャッジ日時 2024-07-20 20:04:50
合計ジャッジ時間 23,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 47 ms
51,712 KB
testcase_03 AC 43 ms
52,096 KB
testcase_04 AC 44 ms
51,968 KB
testcase_05 AC 44 ms
51,968 KB
testcase_06 AC 43 ms
51,712 KB
testcase_07 AC 44 ms
52,352 KB
testcase_08 AC 43 ms
51,840 KB
testcase_09 AC 43 ms
52,352 KB
testcase_10 AC 43 ms
51,968 KB
testcase_11 AC 44 ms
51,968 KB
testcase_12 AC 43 ms
51,968 KB
testcase_13 AC 46 ms
51,712 KB
testcase_14 AC 43 ms
52,096 KB
testcase_15 AC 44 ms
51,840 KB
testcase_16 AC 44 ms
51,840 KB
testcase_17 AC 44 ms
52,352 KB
testcase_18 AC 427 ms
125,504 KB
testcase_19 AC 422 ms
121,836 KB
testcase_20 AC 232 ms
103,168 KB
testcase_21 AC 80 ms
70,016 KB
testcase_22 AC 249 ms
103,936 KB
testcase_23 AC 74 ms
67,968 KB
testcase_24 AC 399 ms
123,460 KB
testcase_25 AC 240 ms
103,680 KB
testcase_26 AC 134 ms
87,936 KB
testcase_27 AC 76 ms
67,968 KB
testcase_28 AC 456 ms
124,792 KB
testcase_29 AC 455 ms
124,488 KB
testcase_30 AC 486 ms
124,152 KB
testcase_31 AC 472 ms
124,104 KB
testcase_32 AC 460 ms
124,404 KB
testcase_33 AC 463 ms
124,152 KB
testcase_34 AC 456 ms
124,660 KB
testcase_35 AC 458 ms
124,264 KB
testcase_36 AC 460 ms
123,980 KB
testcase_37 AC 457 ms
124,144 KB
testcase_38 AC 456 ms
124,276 KB
testcase_39 AC 460 ms
124,144 KB
testcase_40 AC 469 ms
124,532 KB
testcase_41 AC 453 ms
124,152 KB
testcase_42 AC 457 ms
124,276 KB
testcase_43 AC 46 ms
51,456 KB
testcase_44 AC 45 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ta=list(map(int,input().split()))
tb=list(map(int,input().split()))
ab=[[ta[i],tb[i]] for i in range(n)]
ab=sorted(ab,key=lambda x:x[0])
k=sum(tb)
persuit=(k+1)//2
acum=0
x=-1
for a,b in ab:
    if acum<=persuit<=acum+b:
        x=a
        break
    else:
        acum+=b
ans=0
for a,b in ab:
    ans+=abs(x-a)*b
print(x,ans)
0