結果

問題 No.972 選び方のスコア
ユーザー htensaihtensai
提出日時 2020-01-22 08:39:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,319 bytes
コンパイル時間 2,620 ms
コンパイル使用メモリ 77,688 KB
実行使用メモリ 69,436 KB
最終ジャッジ日時 2024-07-07 13:52:56
合計ジャッジ時間 26,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 823 ms
58,208 KB
testcase_01 AC 855 ms
58,156 KB
testcase_02 AC 866 ms
57,404 KB
testcase_03 AC 726 ms
48,692 KB
testcase_04 AC 863 ms
58,108 KB
testcase_05 AC 829 ms
57,216 KB
testcase_06 AC 875 ms
57,664 KB
testcase_07 AC 766 ms
54,224 KB
testcase_08 AC 735 ms
57,056 KB
testcase_09 AC 726 ms
57,208 KB
testcase_10 AC 742 ms
59,192 KB
testcase_11 AC 760 ms
58,944 KB
testcase_12 AC 786 ms
59,536 KB
testcase_13 AC 802 ms
58,700 KB
testcase_14 AC 784 ms
58,768 KB
testcase_15 AC 797 ms
57,128 KB
testcase_16 AC 784 ms
57,784 KB
testcase_17 AC 851 ms
58,124 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 129 ms
41,388 KB
testcase_26 AC 125 ms
41,404 KB
testcase_27 AC 122 ms
40,440 KB
testcase_28 AC 128 ms
41,912 KB
testcase_29 AC 124 ms
40,408 KB
testcase_30 AC 113 ms
41,576 KB
testcase_31 AC 124 ms
41,452 KB
testcase_32 AC 124 ms
41,372 KB
testcase_33 AC 140 ms
41,640 KB
testcase_34 AC 137 ms
41,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[]  args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        long total = 0;
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            total += arr[i];
        }
        Arrays.sort(arr);
        if (n == 1) {
            System.out.println(0);
            return;
        } else if (n == 2) {
            System.out.println(arr[1] - arr[0]);
            return;
        } else if (n == 3) {
            System.out.println(total - arr[1] * 3L);
            return;
        }
        long max = 0;
        int left = 0;
        int right = n - 1;
        long value = 0;
        while (left < right) {
            value += arr[left] + arr[right];
            long count = (left + 1) * 2;
            max = Math.max(max, value - arr[left + 1] * count);
            left++; 
            right--;
        }
        left = 0;
        right = n - 1;
        value = 0;
        while (left + 1 < right) {
            value += arr[left] + arr[right];
            long count = left + 1;
            max = Math.max(max, value - (arr[left + 1] + arr[left + 2]) * count);
            left++;
            right--;
        }
        System.out.println(max);
    }
}
0