結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー rlangevinrlangevin
提出日時 2023-01-28 01:09:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 128,032 KB
最終ジャッジ日時 2024-06-28 09:36:25
合計ジャッジ時間 26,858 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 41 ms
52,008 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 39 ms
51,840 KB
testcase_17 AC 39 ms
52,352 KB
testcase_18 AC 625 ms
127,296 KB
testcase_19 AC 591 ms
120,740 KB
testcase_20 AC 348 ms
103,268 KB
testcase_21 AC 86 ms
76,176 KB
testcase_22 AC 381 ms
104,124 KB
testcase_23 AC 75 ms
76,684 KB
testcase_24 AC 493 ms
116,704 KB
testcase_25 AC 370 ms
103,936 KB
testcase_26 AC 153 ms
86,528 KB
testcase_27 AC 77 ms
76,012 KB
testcase_28 AC 655 ms
127,592 KB
testcase_29 AC 650 ms
127,368 KB
testcase_30 AC 658 ms
127,720 KB
testcase_31 AC 648 ms
127,240 KB
testcase_32 AC 650 ms
127,416 KB
testcase_33 AC 645 ms
127,260 KB
testcase_34 AC 645 ms
128,032 KB
testcase_35 AC 651 ms
127,456 KB
testcase_36 AC 648 ms
127,868 KB
testcase_37 AC 649 ms
127,264 KB
testcase_38 AC 649 ms
127,292 KB
testcase_39 AC 654 ms
127,724 KB
testcase_40 AC 646 ms
127,768 KB
testcase_41 AC 646 ms
127,340 KB
testcase_42 AC 644 ms
127,644 KB
testcase_43 AC 38 ms
51,968 KB
testcase_44 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
D = []
A = list(map(int, input().split()))
B = list(map(int, input().split()))
for i in range(N):
    D.append((A[i], B[i]))
D.sort()

ans = 10 ** 18
Bc = [0] * (N + 1)
ABc = [0] * (N + 1)
for i, t in enumerate(D):
    a, b = t
    Bc[i + 1] = Bc[i] + b
    ABc[i + 1] = ABc[i] + a * b
    
ans = 0
val = 10 ** 18
for i, t in enumerate(D):
    a, b = t
    s = -a * (Bc[N] - Bc[i + 1] * 2) + ABc[N] - ABc[i + 1] * 2
    if s < val:
        val = s
        ans = a

print(ans, val)
0