結果

問題 No.1374 Absolute Game
ユーザー ks2mks2m
提出日時 2021-02-05 21:42:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 1,210 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 77,792 KB
実行使用メモリ 51,352 KB
最終ジャッジ日時 2024-07-02 11:56:01
合計ジャッジ時間 7,612 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,136 KB
testcase_01 AC 50 ms
36,972 KB
testcase_02 AC 49 ms
37,004 KB
testcase_03 AC 48 ms
37,100 KB
testcase_04 AC 48 ms
37,200 KB
testcase_05 AC 48 ms
37,188 KB
testcase_06 AC 49 ms
37,240 KB
testcase_07 AC 47 ms
37,100 KB
testcase_08 AC 158 ms
43,008 KB
testcase_09 AC 236 ms
49,760 KB
testcase_10 AC 250 ms
49,276 KB
testcase_11 AC 218 ms
45,200 KB
testcase_12 AC 168 ms
46,880 KB
testcase_13 AC 235 ms
49,392 KB
testcase_14 AC 258 ms
49,824 KB
testcase_15 AC 267 ms
50,860 KB
testcase_16 AC 250 ms
50,040 KB
testcase_17 AC 263 ms
49,816 KB
testcase_18 AC 265 ms
50,236 KB
testcase_19 AC 261 ms
49,724 KB
testcase_20 AC 175 ms
46,320 KB
testcase_21 AC 197 ms
45,160 KB
testcase_22 AC 270 ms
51,352 KB
testcase_23 AC 124 ms
41,064 KB
testcase_24 AC 123 ms
41,284 KB
testcase_25 AC 129 ms
41,500 KB
testcase_26 AC 162 ms
45,912 KB
testcase_27 AC 185 ms
46,460 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(" ");
		int[] c = new int[n];
		for (int i = 0; i < n; i++) {
			c[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		Arrays.sort(c);
		long ans1 = calc(c);
		reverse(c);
		long ans2 = calc(c);
		System.out.println(Math.max(ans1, ans2));
	}

	static long calc(int[] c) {
		int n = c.length;
		long suma = 0;
		long sumb = 0;
		for (int i = 0; i < n; i++) {
			if (i % 2 == 0) {
				suma += c[i];
			} else {
				sumb += c[i];
			}
		}
		long val1 = Math.abs(suma) - Math.abs(sumb);

		int n2 = (n + 1) / 2;
		suma = 0;
		sumb = 0;
		for (int i = 0; i < n2; i++) {
			suma += c[i];
		}
		for (int i = n2; i < n; i++) {
			sumb += c[i];
		}
		long val2 = Math.abs(suma) - Math.abs(sumb);
		return Math.min(val1, val2);
	}

	static void reverse(int[] a) {
		for (int i = 0; i < a.length / 2; i++) {
			int tmp = a[i];
			a[i] = a[a.length - 1 - i];
			a[a.length - 1 - i] = tmp;
		}
	}
}
0