結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー vwxyzvwxyz
提出日時 2024-04-06 04:05:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 129,988 KB
最終ジャッジ日時 2024-10-01 03:41:40
合計ジャッジ時間 25,551 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,892 KB
testcase_01 AC 37 ms
52,692 KB
testcase_02 AC 38 ms
52,824 KB
testcase_03 AC 38 ms
52,140 KB
testcase_04 AC 37 ms
52,556 KB
testcase_05 AC 37 ms
52,880 KB
testcase_06 AC 38 ms
52,680 KB
testcase_07 AC 39 ms
52,572 KB
testcase_08 AC 38 ms
52,488 KB
testcase_09 AC 37 ms
52,392 KB
testcase_10 AC 38 ms
52,188 KB
testcase_11 AC 38 ms
52,972 KB
testcase_12 AC 38 ms
52,500 KB
testcase_13 AC 38 ms
53,756 KB
testcase_14 AC 38 ms
52,948 KB
testcase_15 AC 38 ms
52,736 KB
testcase_16 AC 39 ms
52,284 KB
testcase_17 AC 38 ms
52,208 KB
testcase_18 AC 620 ms
128,496 KB
testcase_19 AC 594 ms
122,792 KB
testcase_20 AC 357 ms
103,096 KB
testcase_21 AC 84 ms
76,648 KB
testcase_22 AC 374 ms
104,132 KB
testcase_23 AC 76 ms
76,376 KB
testcase_24 AC 489 ms
118,052 KB
testcase_25 AC 356 ms
104,024 KB
testcase_26 AC 149 ms
86,828 KB
testcase_27 AC 75 ms
76,264 KB
testcase_28 AC 717 ms
129,988 KB
testcase_29 AC 642 ms
129,680 KB
testcase_30 AC 570 ms
129,332 KB
testcase_31 AC 645 ms
128,932 KB
testcase_32 AC 667 ms
129,208 KB
testcase_33 AC 655 ms
129,612 KB
testcase_34 AC 656 ms
129,360 KB
testcase_35 AC 648 ms
129,216 KB
testcase_36 AC 649 ms
129,064 KB
testcase_37 AC 648 ms
129,340 KB
testcase_38 AC 648 ms
129,200 KB
testcase_39 AC 647 ms
129,600 KB
testcase_40 AC 645 ms
129,220 KB
testcase_41 AC 650 ms
129,592 KB
testcase_42 AC 645 ms
129,356 KB
testcase_43 AC 38 ms
52,340 KB
testcase_44 AC 38 ms
52,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
S=sum(B)
S//=2
for a,b in sorted([(a,b) for a,b in zip(A,B)]):
    if b<=S:
        S-=b
    else:
        x=a
        break
print(x,sum(abs(x-a)*b for a,b in zip(A,B)))
0