結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー shotoyooshotoyoo
提出日時 2020-10-09 22:57:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 128,304 KB
最終ジャッジ日時 2024-07-20 13:39:50
合計ジャッジ時間 24,038 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 40 ms
52,096 KB
testcase_15 AC 40 ms
52,096 KB
testcase_16 AC 40 ms
51,712 KB
testcase_17 AC 40 ms
51,712 KB
testcase_18 AC 598 ms
127,420 KB
testcase_19 AC 563 ms
121,264 KB
testcase_20 AC 339 ms
104,704 KB
testcase_21 AC 88 ms
76,416 KB
testcase_22 AC 355 ms
106,112 KB
testcase_23 AC 82 ms
76,544 KB
testcase_24 AC 483 ms
116,984 KB
testcase_25 AC 345 ms
104,960 KB
testcase_26 AC 156 ms
86,272 KB
testcase_27 AC 82 ms
76,032 KB
testcase_28 AC 616 ms
127,660 KB
testcase_29 AC 621 ms
127,616 KB
testcase_30 AC 618 ms
127,540 KB
testcase_31 AC 627 ms
127,628 KB
testcase_32 AC 642 ms
127,788 KB
testcase_33 AC 634 ms
128,304 KB
testcase_34 AC 621 ms
127,536 KB
testcase_35 AC 615 ms
127,916 KB
testcase_36 AC 625 ms
127,620 KB
testcase_37 AC 619 ms
128,164 KB
testcase_38 AC 612 ms
128,304 KB
testcase_39 AC 608 ms
127,664 KB
testcase_40 AC 631 ms
127,532 KB
testcase_41 AC 623 ms
127,664 KB
testcase_42 AC 632 ms
127,788 KB
testcase_43 AC 38 ms
51,840 KB
testcase_44 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
ab = list(zip(a,b))
ab.sort()
v0 = ab[0][1]
v1 = sum(b) - v0
i = 0
while v0<v1:
    i += 1
    v0 += ab[i][1]
    v1 -= ab[i][1]
if v0==v1:
    aa,val = ab[i][0], sum(bb*abs(aa-ab[i][0]) for aa,bb in ab)
else:
    aa = ab[i][0]
    val = sum(bb*abs(aa-ab[i][0]) for aa,bb in ab)
print(aa,val)
0