結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー keymoonkeymoon
提出日時 2021-01-18 11:42:28
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 914 bytes
コンパイル時間 3,662 ms
コンパイル使用メモリ 107,520 KB
実行使用メモリ 57,584 KB
最終ジャッジ日時 2024-05-08 01:39:11
合計ジャッジ時間 18,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
19,584 KB
testcase_01 AC 27 ms
19,328 KB
testcase_02 AC 26 ms
19,456 KB
testcase_03 AC 29 ms
19,200 KB
testcase_04 AC 29 ms
19,328 KB
testcase_05 AC 28 ms
19,328 KB
testcase_06 AC 28 ms
19,456 KB
testcase_07 AC 28 ms
19,200 KB
testcase_08 AC 28 ms
19,200 KB
testcase_09 AC 29 ms
19,456 KB
testcase_10 AC 28 ms
19,200 KB
testcase_11 AC 28 ms
19,328 KB
testcase_12 AC 26 ms
19,328 KB
testcase_13 AC 27 ms
19,200 KB
testcase_14 AC 28 ms
19,328 KB
testcase_15 AC 27 ms
19,328 KB
testcase_16 AC 27 ms
19,328 KB
testcase_17 AC 27 ms
19,456 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 83 ms
24,816 KB
testcase_22 RE -
testcase_23 AC 64 ms
24,740 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 69 ms
21,888 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 28 ms
23,604 KB
testcase_44 AC 26 ms
19,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        var a = Console.ReadLine().Split().Select(long.Parse).ToArray();
        var b = Console.ReadLine().Split().Select(long.Parse).ToArray();
        long F(long X) => a.Zip(b, (a, b) => Abs(X - a) * b).Sum();
        long valid = int.MinValue;
        long invalid = int.MaxValue;
        while (invalid - valid > 1)
        {
            var mid = (invalid + valid) / 2;
            if (F(mid) - F(mid + 1) >= 1) valid = mid;
            else invalid = mid;
        }
        Console.WriteLine($"{invalid} {F(invalid)}");
    }
}
0