結果

問題 No.1041 直線大学
ユーザー tentententen
提出日時 2021-03-17 13:47:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 2,154 bytes
コンパイル時間 2,756 ms
コンパイル使用メモリ 80,784 KB
実行使用メモリ 42,120 KB
最終ジャッジ日時 2024-11-16 08:11:39
合計ジャッジ時間 9,120 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
39,828 KB
testcase_01 AC 125 ms
41,208 KB
testcase_02 AC 115 ms
39,888 KB
testcase_03 AC 109 ms
39,916 KB
testcase_04 AC 117 ms
40,020 KB
testcase_05 AC 115 ms
40,700 KB
testcase_06 AC 124 ms
41,144 KB
testcase_07 AC 133 ms
41,420 KB
testcase_08 AC 130 ms
41,036 KB
testcase_09 AC 130 ms
41,164 KB
testcase_10 AC 165 ms
41,544 KB
testcase_11 AC 155 ms
41,884 KB
testcase_12 AC 165 ms
41,800 KB
testcase_13 AC 128 ms
40,596 KB
testcase_14 AC 145 ms
41,492 KB
testcase_15 AC 126 ms
40,992 KB
testcase_16 AC 147 ms
41,492 KB
testcase_17 AC 131 ms
41,144 KB
testcase_18 AC 147 ms
41,680 KB
testcase_19 AC 142 ms
41,748 KB
testcase_20 AC 110 ms
40,108 KB
testcase_21 AC 138 ms
41,420 KB
testcase_22 AC 116 ms
40,028 KB
testcase_23 AC 171 ms
42,120 KB
testcase_24 AC 141 ms
41,600 KB
testcase_25 AC 143 ms
41,572 KB
testcase_26 AC 118 ms
40,076 KB
testcase_27 AC 122 ms
40,712 KB
testcase_28 AC 127 ms
41,108 KB
testcase_29 AC 118 ms
41,092 KB
testcase_30 AC 119 ms
41,256 KB
testcase_31 AC 119 ms
41,028 KB
testcase_32 AC 120 ms
41,068 KB
testcase_33 AC 122 ms
41,112 KB
testcase_34 AC 108 ms
39,924 KB
testcase_35 AC 122 ms
40,888 KB
testcase_36 AC 120 ms
41,192 KB
testcase_37 AC 123 ms
41,076 KB
testcase_38 AC 173 ms
41,876 KB
testcase_39 AC 137 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    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++) {
            points[i] = new Point(sc.nextInt(), sc.nextInt());
        }
        int max = 2;
        for (int i = 0; i < n - 1; i++) {
            HashMap<Point, Integer> sums = new HashMap<>();
            for (int j = i + 1; j < n; j++) {
                Point p = points[i].get(points[j]);
                p.normalize();
                sums.put(p, sums.getOrDefault(p, 0) + 1);
            }
            for (int x : sums.values()) {
                max = Math.max(max, x + 1);
            }
        }
        System.out.println(max);
    }
    
    static class Point {
        int x;
        int y;
        
        public  Point(int x, int y) {
            this.x = x;
            this.y = y;
        }
        
        public Point get(Point p) {
            return new Point(x - p.x, y - p.y);
        }
        
        public void normalize() {
            if (x == 0) {
                y = 1;
                return;
            }
            if (y == 0) {
                x = 1;
                return;
            }
            boolean isMinus = false;
            if (x < 0) {
                x *= -1;
                isMinus ^= true;
            }
            if (y < 0) {
                y *= -1;
                isMinus ^= true;
            }
            int gcd = getGCD(x, y);
            x /= gcd;
            y /= gcd;
            if (isMinus) {
                y *= -1;
            }
        }
        
        private int getGCD(int a, int b) {
            if (a % b == 0) {
                return b;
            } else {
                return getGCD(b, a % b);
            }
        }
        
        public int hashCode() {
            return x + y;
        }
        
        public boolean equals(Object o) {
            Point p = (Point)o;
            return p.x == x && p.y == y;
        }
        
        public String toString() {
            return x + ":" + y;
        }
    }
}
0