結果

問題 No.2261 Coffee
ユーザー ks2mks2m
提出日時 2023-04-08 00:04:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 783 ms / 2,000 ms
コード長 1,338 bytes
コンパイル時間 2,827 ms
コンパイル使用メモリ 77,756 KB
実行使用メモリ 56,384 KB
最終ジャッジ日時 2024-10-02 20:53:42
合計ジャッジ時間 22,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,112 KB
testcase_01 AC 50 ms
37,016 KB
testcase_02 AC 51 ms
36,600 KB
testcase_03 AC 50 ms
37,248 KB
testcase_04 AC 51 ms
36,716 KB
testcase_05 AC 49 ms
37,176 KB
testcase_06 AC 50 ms
37,156 KB
testcase_07 AC 49 ms
36,716 KB
testcase_08 AC 50 ms
37,128 KB
testcase_09 AC 50 ms
36,928 KB
testcase_10 AC 57 ms
37,048 KB
testcase_11 AC 61 ms
37,264 KB
testcase_12 AC 56 ms
37,004 KB
testcase_13 AC 53 ms
36,704 KB
testcase_14 AC 56 ms
36,924 KB
testcase_15 AC 53 ms
36,932 KB
testcase_16 AC 58 ms
36,940 KB
testcase_17 AC 188 ms
41,944 KB
testcase_18 AC 189 ms
41,784 KB
testcase_19 AC 177 ms
42,020 KB
testcase_20 AC 161 ms
41,592 KB
testcase_21 AC 177 ms
42,136 KB
testcase_22 AC 161 ms
41,308 KB
testcase_23 AC 176 ms
42,216 KB
testcase_24 AC 696 ms
52,380 KB
testcase_25 AC 712 ms
51,704 KB
testcase_26 AC 705 ms
52,200 KB
testcase_27 AC 707 ms
52,052 KB
testcase_28 AC 590 ms
52,004 KB
testcase_29 AC 573 ms
54,444 KB
testcase_30 AC 545 ms
50,828 KB
testcase_31 AC 675 ms
53,116 KB
testcase_32 AC 663 ms
53,144 KB
testcase_33 AC 708 ms
53,108 KB
testcase_34 AC 704 ms
56,384 KB
testcase_35 AC 783 ms
56,308 KB
testcase_36 AC 724 ms
52,664 KB
testcase_37 AC 733 ms
55,992 KB
testcase_38 AC 727 ms
52,468 KB
testcase_39 AC 735 ms
52,376 KB
testcase_40 AC 684 ms
52,604 KB
testcase_41 AC 696 ms
52,488 KB
testcase_42 AC 725 ms
52,156 KB
testcase_43 AC 759 ms
52,788 KB
testcase_44 AC 710 ms
52,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
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());
		long[][] a = new long[n][5];
		for (int i = 0; i < n; i++) {
			String[] sa = br.readLine().split(" ");
			for (int j = 0; j < 5; j++) {
				a[i][j] = Long.parseLong(sa[j]);
			}
		}
		br.close();

		long[] min = new long[32];
		long[] max = new long[32];
		Arrays.fill(min, Long.MAX_VALUE);
		Arrays.fill(max, Long.MIN_VALUE);
		for (int i = 0; i < n; i++) {
			for (int k = 0; k < 32; k++) {
				long v = 0;
				for (int j = 0; j < 5; j++) {
					if ((k >> j & 1) == 1) {
						v += a[i][j];
					} else {
						v -= a[i][j];
					}
				}
				min[k] = Math.min(min[k], v);
				max[k] = Math.max(max[k], v);
			}
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < n; i++) {
			long ans = 0;
			for (int k = 0; k < 32; k++) {
				long v = 0;
				for (int j = 0; j < 5; j++) {
					if ((k >> j & 1) == 1) {
						v += a[i][j];
					} else {
						v -= a[i][j];
					}
				}
				ans = Math.max(ans, v - min[k]);
				ans = Math.max(ans, max[k] - v);
			}
			pw.println(ans);
		}
		pw.flush();
	}
}
0