結果

問題 No.2790 Athena 3
ユーザー ks2mks2m
提出日時 2024-06-21 22:59:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 2,906 ms
コンパイル使用メモリ 77,156 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-06-21 22:59:24
合計ジャッジ時間 6,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,820 KB
testcase_01 AC 137 ms
54,136 KB
testcase_02 AC 122 ms
54,160 KB
testcase_03 AC 118 ms
54,120 KB
testcase_04 AC 107 ms
52,792 KB
testcase_05 AC 126 ms
54,076 KB
testcase_06 AC 140 ms
54,136 KB
testcase_07 AC 131 ms
54,168 KB
testcase_08 AC 109 ms
52,916 KB
testcase_09 AC 125 ms
54,000 KB
testcase_10 AC 126 ms
53,804 KB
testcase_11 AC 124 ms
53,796 KB
testcase_12 AC 112 ms
52,976 KB
testcase_13 AC 128 ms
54,104 KB
testcase_14 AC 131 ms
54,216 KB
testcase_15 AC 123 ms
54,012 KB
testcase_16 AC 122 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int[] x = new int[3];
		int[] y = new int[3];
		for (int i = 0; i < 3; i++) {
			x[i] = sc.nextInt();
			y[i] = sc.nextInt();
		}
		sc.close();

		int[] dx = {1, 0, -1, 0};
		int[] dy = {0, 1, 0, -1};
		int max = 0;
		for (int i = 0; i < 4; i++) {
			int x1 = x[0] + dx[i];
			int y1 = y[0] + dy[i];
			for (int j = 0; j < 4; j++) {
				int x2 = x[1] + dx[j];
				int y2 = y[1] + dy[j];
				for (int k = 0; k < 4; k++) {
					int x3 = x[2] + dx[k];
					int y3 = y[2] + dy[k];
					int s = x1 * y2 + x2 * y3 + x3 * y1 - y1 * x2 - y2 * x3 - y3 * x1;
					int s2 = Math.abs(s);
					max = Math.max(max, s2);
				}
			}
		}
		System.out.println(max / 2.0);
	}
}
0