結果

問題 No.1041 直線大学
ユーザー taku-techtaku-tech
提出日時 2021-05-23 05:29:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 1,141 bytes
コンパイル時間 3,506 ms
コンパイル使用メモリ 77,244 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-11-16 08:12:13
合計ジャッジ時間 10,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,300 KB
testcase_01 AC 129 ms
41,260 KB
testcase_02 AC 129 ms
40,808 KB
testcase_03 AC 128 ms
41,116 KB
testcase_04 AC 117 ms
40,000 KB
testcase_05 AC 130 ms
40,772 KB
testcase_06 AC 129 ms
41,096 KB
testcase_07 AC 133 ms
41,260 KB
testcase_08 AC 120 ms
39,840 KB
testcase_09 AC 136 ms
41,248 KB
testcase_10 AC 168 ms
41,188 KB
testcase_11 AC 160 ms
41,488 KB
testcase_12 AC 160 ms
41,644 KB
testcase_13 AC 136 ms
41,344 KB
testcase_14 AC 150 ms
41,244 KB
testcase_15 AC 136 ms
41,600 KB
testcase_16 AC 147 ms
41,420 KB
testcase_17 AC 134 ms
41,416 KB
testcase_18 AC 138 ms
41,344 KB
testcase_19 AC 144 ms
41,208 KB
testcase_20 AC 128 ms
40,840 KB
testcase_21 AC 143 ms
41,228 KB
testcase_22 AC 130 ms
41,104 KB
testcase_23 AC 154 ms
41,340 KB
testcase_24 AC 151 ms
41,228 KB
testcase_25 AC 143 ms
41,308 KB
testcase_26 AC 136 ms
41,056 KB
testcase_27 AC 141 ms
41,100 KB
testcase_28 AC 125 ms
40,912 KB
testcase_29 AC 127 ms
40,972 KB
testcase_30 AC 130 ms
40,956 KB
testcase_31 AC 129 ms
41,096 KB
testcase_32 AC 125 ms
41,092 KB
testcase_33 AC 116 ms
40,076 KB
testcase_34 AC 119 ms
40,584 KB
testcase_35 AC 128 ms
40,840 KB
testcase_36 AC 125 ms
40,944 KB
testcase_37 AC 115 ms
39,872 KB
testcase_38 AC 153 ms
41,436 KB
testcase_39 AC 136 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package coord_count;

import java.util.Scanner;

class Point {
	private int x;
	private int y;

	public Point(int x, int y) {
		this.x = x;
		this.y = y;
	}

	public int getX() {
		return this.x;
	}

	public int getY() {
		return this.y;
	}
}

public class CoordCount {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);


		int N = sc.nextInt();
		Point[] points = new Point[N];

		for(int i = 0; i <N; i++) {
			int x = sc.nextInt();
			int y = sc.nextInt();
			points[i] = new Point(x, y);
		}

		System.out.println(maxCnt(points));
	}

	private static int maxCnt(Point[] points) {
		int maxCnt = 0;

		for(int i = 0; i < points.length - 1; i++) {
			for(int j = (i + 1); j < points.length; j++) {
				int cnt = 2;
				int dx = points[i].getX() - points[j].getX();
				int dy = points[i].getY() - points[j].getY();
				for(int k = (j + 1); k < points.length; k++) {
					int nx = points[i].getX() - points[k].getX();
					int ny = points[i].getY() - points[k].getY();
					if(dx * ny == dy * nx) {
						cnt++;
					}
				}
				if(maxCnt < cnt) {
					maxCnt = cnt;
				}
			}

		}

		return maxCnt;
	}

}
0