結果

問題 No.1041 直線大学
ユーザー xRS43BofaUEZ5gc
提出日時 2021-03-29 16:07:24
言語 Java
(openjdk 23)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 3,227 ms
コンパイル使用メモリ 77,276 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-11-16 08:11:57
合計ジャッジ時間 9,483 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {
		public static void main (String[] args) {
			Scanner sc = new Scanner(System.in);
			int n = sc.nextInt();
			int[][] positions = new int[n][2];
			for (int i = 0; i < n; i ++) {
				positions[i][0] = sc.nextInt();
				positions[i][1] = sc.nextInt();
			}

			int count = 1;

			for (int i = 0; i < n; i ++) {
				for (int j = i+1; j < n; j ++) {
					long deltax1 = positions[i][0] - positions[j][0];
					long deltay1 = positions[i][1] - positions[j][1];
					int count_temp = 0;
					for (int ni = 0; ni < n; ni ++) {
						long deltax2 = positions[ni][0] - positions[j][0];
						long deltay2 = positions[ni][1] - positions[j][1];
						if (deltax1 * deltay2 == deltax2 * deltay1) {
							count_temp ++;
						}
					}
					if (count_temp > count) {
						count = count_temp;
					}
				}
			}
			
			System.out.println(count);
	}
}
0