結果

問題 No.972 選び方のスコア
ユーザー C_nena_EC_nena_E
提出日時 2020-01-18 09:36:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,088 ms / 2,000 ms
コード長 1,270 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 78,168 KB
実行使用メモリ 61,604 KB
最終ジャッジ日時 2024-06-27 01:21:33
合計ジャッジ時間 30,122 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,044 ms
60,284 KB
testcase_01 AC 1,064 ms
59,832 KB
testcase_02 AC 981 ms
59,512 KB
testcase_03 AC 734 ms
49,636 KB
testcase_04 AC 1,053 ms
59,536 KB
testcase_05 AC 1,033 ms
59,856 KB
testcase_06 AC 1,088 ms
59,948 KB
testcase_07 AC 881 ms
60,348 KB
testcase_08 AC 894 ms
60,828 KB
testcase_09 AC 867 ms
59,968 KB
testcase_10 AC 844 ms
61,604 KB
testcase_11 AC 868 ms
61,120 KB
testcase_12 AC 917 ms
61,416 KB
testcase_13 AC 868 ms
60,984 KB
testcase_14 AC 898 ms
60,588 KB
testcase_15 AC 952 ms
59,844 KB
testcase_16 AC 1,007 ms
60,076 KB
testcase_17 AC 973 ms
60,140 KB
testcase_18 AC 124 ms
41,684 KB
testcase_19 AC 1,025 ms
60,456 KB
testcase_20 AC 1,038 ms
60,632 KB
testcase_21 AC 1,056 ms
60,724 KB
testcase_22 AC 1,020 ms
59,736 KB
testcase_23 AC 1,019 ms
61,240 KB
testcase_24 AC 1,055 ms
60,588 KB
testcase_25 AC 110 ms
39,844 KB
testcase_26 AC 124 ms
41,264 KB
testcase_27 AC 120 ms
41,264 KB
testcase_28 AC 123 ms
41,324 KB
testcase_29 AC 127 ms
41,368 KB
testcase_30 AC 129 ms
41,148 KB
testcase_31 AC 125 ms
41,508 KB
testcase_32 AC 117 ms
40,424 KB
testcase_33 AC 147 ms
41,656 KB
testcase_34 AC 137 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long[] li = new long[n];
        long[] rsw = new long[n+1];
        long ans = 0;
        for(int i = 0; i < n; i++){
            li[i] = sc.nextInt();
        }
        if(n <= 2){
            System.out.println(0);
            return;
        }
        Arrays.sort(li);
        for(int i = 1; i <= n; i++){
            rsw[i] += li[i-1]+rsw[i-1];
        }

        for(int i = 1; i < n-1; i++){
            int left = 1;
            int right = Math.min(i+1,n-i);
            while(Math.abs(right-left) > 1){
                int mid = (left + right) /2;
                if(check(li,i,mid)){
                    left = mid;
                }else{
                    right = mid;
                }
            }
            long val = rsw[i] - rsw[i-left] + rsw[n]-rsw[n-left];
            val -= li[i]*left*2;
            ans = Math.max(ans, val);
        }
        System.out.println(ans);
    }

    static boolean check(long[] li, int i, int mid){
        int n = li.length;
        return (li[n-mid] + li[i-mid])-(2*li[i]) >= 0;
    }
}

0