結果

問題 No.972 選び方のスコア
ユーザー ks2mks2m
提出日時 2020-01-17 22:42:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 576 ms / 2,000 ms
コード長 1,160 bytes
コンパイル時間 2,595 ms
コンパイル使用メモリ 77,460 KB
実行使用メモリ 63,112 KB
最終ジャッジ日時 2024-06-25 22:35:22
合計ジャッジ時間 16,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
61,748 KB
testcase_01 AC 514 ms
62,208 KB
testcase_02 AC 488 ms
61,432 KB
testcase_03 AC 341 ms
52,440 KB
testcase_04 AC 576 ms
61,604 KB
testcase_05 AC 527 ms
61,904 KB
testcase_06 AC 557 ms
61,760 KB
testcase_07 AC 411 ms
55,768 KB
testcase_08 AC 383 ms
60,840 KB
testcase_09 AC 409 ms
59,444 KB
testcase_10 AC 396 ms
60,836 KB
testcase_11 AC 388 ms
62,380 KB
testcase_12 AC 455 ms
63,112 KB
testcase_13 AC 399 ms
62,520 KB
testcase_14 AC 426 ms
62,968 KB
testcase_15 AC 437 ms
61,568 KB
testcase_16 AC 444 ms
62,072 KB
testcase_17 AC 396 ms
62,112 KB
testcase_18 AC 55 ms
37,264 KB
testcase_19 AC 516 ms
60,516 KB
testcase_20 AC 549 ms
60,992 KB
testcase_21 AC 498 ms
60,408 KB
testcase_22 AC 544 ms
60,764 KB
testcase_23 AC 462 ms
60,592 KB
testcase_24 AC 542 ms
60,824 KB
testcase_25 AC 55 ms
37,320 KB
testcase_26 AC 54 ms
37,260 KB
testcase_27 AC 55 ms
36,776 KB
testcase_28 AC 52 ms
37,084 KB
testcase_29 AC 53 ms
36,588 KB
testcase_30 AC 54 ms
37,232 KB
testcase_31 AC 55 ms
37,024 KB
testcase_32 AC 53 ms
37,324 KB
testcase_33 AC 57 ms
37,228 KB
testcase_34 AC 54 ms
37,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		if (n <= 2) {
			System.out.println(0);
			return;
		}

		Arrays.parallelSort(a);
		long[] b = new long[n + 1];
		for (int i = 0; i < n; i++) {
			b[i + 1] = b[i] + a[i];
		}

		long ans = 0;
		for (int i = 1; i < n - 1; i++) {
			int ok = 1;
			int ng = Math.min(i + 1, n - i);
			while (Math.abs(ng - ok) > 1) {
				int mid = (ng + ok) / 2;
				if (calc(a, i, mid)) {
					ok = mid;
				} else {
					ng = mid;
				}
			}
			long val = b[i] - b[i - ok] + b[n] - b[n - ok];
			val -= a[i] * ok * 2;
			ans = Math.max(ans, val);
		}
		System.out.println(ans);
	}

	static boolean calc(long[] a, int i, int mid) {
		int n = a.length;
		long m = a[i] - a[i - mid];
		long p = a[n - mid] - a[i];
		return p >= m;
	}
}
0