結果

問題 No.1041 直線大学
ユーザー htensaihtensai
提出日時 2020-05-07 10:02:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 76,856 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-11-16 08:01:49
合計ジャッジ時間 8,170 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
39,820 KB
testcase_01 AC 112 ms
40,984 KB
testcase_02 AC 114 ms
41,084 KB
testcase_03 AC 120 ms
41,248 KB
testcase_04 AC 103 ms
40,264 KB
testcase_05 AC 113 ms
39,880 KB
testcase_06 AC 116 ms
41,208 KB
testcase_07 AC 123 ms
41,228 KB
testcase_08 AC 124 ms
41,024 KB
testcase_09 AC 112 ms
40,560 KB
testcase_10 AC 129 ms
41,376 KB
testcase_11 AC 134 ms
41,572 KB
testcase_12 AC 130 ms
41,736 KB
testcase_13 AC 123 ms
41,312 KB
testcase_14 AC 128 ms
41,368 KB
testcase_15 AC 126 ms
41,292 KB
testcase_16 AC 127 ms
41,520 KB
testcase_17 AC 100 ms
40,104 KB
testcase_18 AC 120 ms
41,136 KB
testcase_19 AC 130 ms
41,452 KB
testcase_20 AC 102 ms
40,188 KB
testcase_21 AC 120 ms
41,608 KB
testcase_22 AC 107 ms
39,992 KB
testcase_23 AC 131 ms
41,540 KB
testcase_24 AC 135 ms
41,364 KB
testcase_25 AC 123 ms
40,752 KB
testcase_26 AC 120 ms
41,072 KB
testcase_27 AC 123 ms
41,348 KB
testcase_28 AC 101 ms
40,020 KB
testcase_29 AC 116 ms
41,268 KB
testcase_30 AC 116 ms
41,000 KB
testcase_31 AC 113 ms
40,028 KB
testcase_32 AC 101 ms
39,944 KB
testcase_33 AC 97 ms
39,408 KB
testcase_34 AC 112 ms
40,120 KB
testcase_35 AC 100 ms
40,192 KB
testcase_36 AC 113 ms
41,180 KB
testcase_37 AC 116 ms
40,956 KB
testcase_38 AC 131 ms
41,428 KB
testcase_39 AC 117 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arrX = new int[n];
		int[] arrY = new int[n];
		for (int i = 0; i < n; i++) {
		    arrX[i] = sc.nextInt();
		    arrY[i] = sc.nextInt();
		}
		int max = 2;
		for (int i = 0; i < n - 2; i++) {
		    for (int j = i + 1; j < n - 1; j++) {
		        int x = arrX[i] - arrX[j];
		        int y = arrY[i] - arrY[j];
		        int count = 0;
		        for (int k = j + 1; k < n; k++) {
    		        int xx = arrX[i] - arrX[k];
    		        int yy = arrY[i] - arrY[k];
    		        if (x * yy == y * xx) {
    		            count++;
    		        }
		        }
		        max = Math.max(max, count + 2);
		    }
		}
		System.out.println(max);
	}
}
0