結果

問題 No.2769 Number of Rhombi
ユーザー tentententen
提出日時 2024-06-04 18:16:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 4,509 ms / 5,000 ms
コード長 2,942 bytes
コンパイル時間 3,906 ms
コンパイル使用メモリ 80,324 KB
実行使用メモリ 458,400 KB
最終ジャッジ日時 2024-06-04 18:18:42
合計ジャッジ時間 106,599 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,928 KB
testcase_01 AC 50 ms
36,796 KB
testcase_02 AC 60 ms
37,020 KB
testcase_03 AC 2,346 ms
253,336 KB
testcase_04 AC 1,948 ms
198,176 KB
testcase_05 AC 1,741 ms
160,808 KB
testcase_06 AC 1,984 ms
180,648 KB
testcase_07 AC 2,598 ms
227,508 KB
testcase_08 AC 2,689 ms
230,564 KB
testcase_09 AC 2,702 ms
248,768 KB
testcase_10 AC 2,876 ms
273,352 KB
testcase_11 AC 3,001 ms
299,588 KB
testcase_12 AC 3,193 ms
324,600 KB
testcase_13 AC 3,306 ms
349,072 KB
testcase_14 AC 3,545 ms
374,848 KB
testcase_15 AC 3,955 ms
384,920 KB
testcase_16 AC 3,758 ms
391,836 KB
testcase_17 AC 3,850 ms
404,316 KB
testcase_18 AC 4,082 ms
417,504 KB
testcase_19 AC 4,073 ms
416,572 KB
testcase_20 AC 4,051 ms
424,900 KB
testcase_21 AC 4,293 ms
429,668 KB
testcase_22 AC 4,509 ms
444,296 KB
testcase_23 AC 4,415 ms
458,400 KB
testcase_24 AC 49 ms
37,056 KB
testcase_25 AC 2,906 ms
283,312 KB
testcase_26 AC 3,079 ms
295,012 KB
testcase_27 AC 3,954 ms
402,656 KB
testcase_28 AC 3,837 ms
390,296 KB
testcase_29 AC 4,211 ms
421,396 KB
testcase_30 AC 3,755 ms
392,552 KB
testcase_31 AC 2,890 ms
269,540 KB
testcase_32 AC 2,582 ms
212,812 KB
testcase_33 AC 2,633 ms
230,176 KB
testcase_34 AC 2,644 ms
254,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        Point[] points = new Point[n];
        Map<Long, Map<Integer, Set<Integer>>> lines = new HashMap<>();
        for (int i = 0; i < n; i++) {
            points[i] = new Point(sc.nextInt(), sc.nextInt());
            for (int j = 0; j < i; j++) {
                long d = points[i].getDistance(points[j]);
                if (!lines.containsKey(d)) {
                    lines.put(d, new HashMap<>());
                }
                if (!lines.get(d).containsKey(j)) {
                    lines.get(d).put(j, new HashSet<>());
                }
                lines.get(d).get(j).add(i);
                if (!lines.get(d).containsKey(i)) {
                    lines.get(d).put(i, new HashSet<>());
                }
                lines.get(d).get(i).add(j);
            }
        }
        int ans = 0;
        for (Map<Integer, Set<Integer>> current : lines.values()) {
            for (int x : current.keySet()) {
                for (int y : current.get(x)) {
                    if (x >= y) {
                        continue;
                    }
                    for (int z : current.get(x)) {
                        if (y >= z) {
                            continue;
                        }
                        for (int k : current.get(y)) {
                            if (k > x && current.get(z).contains(k)) {
                                ans++;
                            }
                        }
                    }
                }
            }
        }
        System.out.println(ans);
    }
    
    static class Point {
        long x;
        long y;
        
        public Point(long x, long y) {
            this.x = x;
            this.y = y;
        }
        
        public long getDistance(Point p) {
            return (x - p.x) * (x - p.x) + (y - p.y) * (y - p.y);
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0