結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー momoyuumomoyuu
提出日時 2022-08-03 03:15:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 649 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 127,928 KB
最終ジャッジ日時 2024-07-23 21:21:56
合計ジャッジ時間 24,797 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,876 KB
testcase_01 AC 37 ms
52,616 KB
testcase_02 AC 37 ms
52,748 KB
testcase_03 AC 38 ms
52,072 KB
testcase_04 AC 37 ms
52,472 KB
testcase_05 AC 38 ms
52,504 KB
testcase_06 AC 39 ms
53,168 KB
testcase_07 AC 38 ms
52,400 KB
testcase_08 AC 38 ms
52,628 KB
testcase_09 AC 38 ms
52,964 KB
testcase_10 AC 38 ms
53,244 KB
testcase_11 AC 38 ms
52,568 KB
testcase_12 AC 37 ms
52,488 KB
testcase_13 AC 37 ms
52,756 KB
testcase_14 AC 38 ms
53,192 KB
testcase_15 AC 38 ms
52,680 KB
testcase_16 AC 38 ms
54,156 KB
testcase_17 AC 38 ms
52,152 KB
testcase_18 AC 617 ms
127,480 KB
testcase_19 AC 585 ms
121,272 KB
testcase_20 AC 337 ms
103,708 KB
testcase_21 AC 82 ms
76,708 KB
testcase_22 AC 370 ms
104,296 KB
testcase_23 AC 75 ms
76,264 KB
testcase_24 AC 486 ms
117,124 KB
testcase_25 AC 354 ms
104,100 KB
testcase_26 AC 147 ms
86,568 KB
testcase_27 AC 75 ms
76,256 KB
testcase_28 AC 641 ms
127,772 KB
testcase_29 AC 645 ms
127,764 KB
testcase_30 AC 638 ms
127,588 KB
testcase_31 AC 641 ms
127,756 KB
testcase_32 AC 637 ms
127,928 KB
testcase_33 AC 641 ms
127,672 KB
testcase_34 AC 649 ms
127,784 KB
testcase_35 AC 642 ms
127,784 KB
testcase_36 AC 641 ms
127,768 KB
testcase_37 AC 644 ms
127,624 KB
testcase_38 AC 638 ms
127,796 KB
testcase_39 AC 640 ms
127,680 KB
testcase_40 AC 647 ms
127,552 KB
testcase_41 AC 635 ms
127,680 KB
testcase_42 AC 638 ms
127,676 KB
testcase_43 AC 38 ms
52,704 KB
testcase_44 AC 39 ms
52,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
l = []
for i in range(N):
    l.append((A[i],B[i]))
l.sort()
a = 0
for i in range(N):
    a += B[i]
a //= 2

now = 0
o = 0
for i in range(N):
    p,q = l[i]
    now += q
    if now >= a:
        o = p
        break

sum = 0
for i in range(N):
    sum += B[i] * abs(o-A[i])

print(o,sum)
0