結果

問題 No.1447 Greedy MtSaka
ユーザー ApassApass
提出日時 2021-03-31 14:57:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 4,442 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 46,616 KB
最終ジャッジ日時 2024-12-14 22:25:58
合計ジャッジ時間 7,941 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class C_GreedyMtSaka {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int[] X = new int[N];
        int[] Y = new int[N];
        for (int i = 0; i < N; i++) {
            X[i] = sc.nextInt();
            Y[i] = sc.nextInt();
        }
        System.out.println(-polygonAreaTwice(X, Y, N));
    }

    static long polygonAreaTwice(int[] X, int[] Y, int n) {
        long area = 0L;

        for (int i = 0, j = n - 1; i < n; j = i, i++) {
            area += (long) (X[j] + X[i]) * (Y[j] - Y[i]);
        }
        return area;
    }
}
0