結果

問題 No.1144 Triangles
ユーザー lavoxlavox
提出日時 2021-06-11 21:22:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,081 ms / 3,000 ms
コード長 660 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 77,328 KB
実行使用メモリ 45,148 KB
最終ジャッジ日時 2024-12-14 22:04:51
合計ジャッジ時間 32,512 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,308 KB
testcase_01 AC 110 ms
40,524 KB
testcase_02 AC 127 ms
41,160 KB
testcase_03 AC 131 ms
41,576 KB
testcase_04 AC 2,081 ms
44,844 KB
testcase_05 AC 2,069 ms
45,016 KB
testcase_06 AC 2,058 ms
45,148 KB
testcase_07 AC 2,077 ms
45,008 KB
testcase_08 AC 2,081 ms
44,792 KB
testcase_09 AC 126 ms
41,160 KB
testcase_10 AC 112 ms
40,252 KB
testcase_11 AC 129 ms
41,344 KB
testcase_12 AC 110 ms
40,180 KB
testcase_13 AC 115 ms
40,444 KB
testcase_14 AC 1,864 ms
44,948 KB
testcase_15 AC 1,829 ms
44,688 KB
testcase_16 AC 1,992 ms
44,912 KB
testcase_17 AC 2,008 ms
44,832 KB
testcase_18 AC 2,000 ms
44,844 KB
testcase_19 AC 325 ms
44,068 KB
testcase_20 AC 167 ms
41,860 KB
testcase_21 AC 169 ms
41,420 KB
testcase_22 AC 1,906 ms
45,024 KB
testcase_23 AC 242 ms
42,584 KB
testcase_24 AC 1,875 ms
44,704 KB
testcase_25 AC 544 ms
43,284 KB
testcase_26 AC 225 ms
42,260 KB
testcase_27 AC 1,913 ms
43,640 KB
testcase_28 AC 401 ms
44,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static final int MOD = 1000000007;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = Integer.parseInt(sc.next());
		long[] x = new long[n];
		long[] y = new long[n];
		for ( int i = 0 ; i < n ; i++ ) {
			x[i] = Long.parseLong(sc.next());
			y[i] = Long.parseLong(sc.next());
		}
		sc.close();
		
		long ans = 0;
		for ( int i = 0 ; i < n ; i++ ) {
			for ( int j = i + 1 ; j < n ; j++ ) {
				for ( int k = j + 1 ; k < n ; k++ ) {
					ans += Math.abs((x[k] - x[i]) * (y[j] - y[i]) - (y[k] - y[i]) * (x[j] - x[i]));
				}
			}
		}

		System.out.println(ans % MOD);
	}
}
0