結果

問題 No.488 四角関係
ユーザー tentententen
提出日時 2020-12-18 14:19:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 234 ms / 5,000 ms
コード長 1,396 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 79,336 KB
実行使用メモリ 45,224 KB
最終ジャッジ日時 2024-09-21 09:08:41
合計ジャッジ時間 7,045 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,820 KB
testcase_01 AC 191 ms
42,240 KB
testcase_02 AC 179 ms
41,728 KB
testcase_03 AC 163 ms
41,548 KB
testcase_04 AC 182 ms
42,288 KB
testcase_05 AC 199 ms
42,520 KB
testcase_06 AC 164 ms
41,580 KB
testcase_07 AC 234 ms
45,224 KB
testcase_08 AC 189 ms
43,992 KB
testcase_09 AC 111 ms
39,808 KB
testcase_10 AC 149 ms
42,040 KB
testcase_11 AC 135 ms
41,612 KB
testcase_12 AC 157 ms
41,752 KB
testcase_13 AC 145 ms
41,816 KB
testcase_14 AC 133 ms
41,328 KB
testcase_15 AC 121 ms
41,164 KB
testcase_16 AC 124 ms
41,348 KB
testcase_17 AC 123 ms
41,456 KB
testcase_18 AC 130 ms
41,148 KB
testcase_19 AC 128 ms
40,112 KB
testcase_20 AC 122 ms
41,500 KB
testcase_21 AC 121 ms
41,196 KB
testcase_22 AC 120 ms
40,924 KB
testcase_23 AC 123 ms
41,500 KB
testcase_24 AC 134 ms
41,420 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 m = sc.nextInt();
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        ArrayList<HashSet<Integer>> exist = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
            exist.add(new HashSet<>());
        }
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            graph.get(a).add(b);
            graph.get(b).add(a);
            exist.get(a).add(b);
            exist.get(b).add(a);
        }
        int ans = 0;
        for (int i = 0; i < n - 1; i++) {
            for (int j = i + 1; j < n; j++) {
                if (exist.get(i).contains(j)) {
                    continue;
                }
                for (int a = 0; a < graph.get(i).size() - 1; a++) {
                    for (int b = a + 1; b < graph.get(i).size(); b++) {
                        if (exist.get(j).contains(graph.get(i).get(a)) && exist.get(j).contains(graph.get(i).get(b)) && !exist.get(graph.get(i).get(a)).contains(graph.get(i).get(b))) {
                            ans++;
                        }
                    }
                }
            }
        }
        System.out.println(ans / 2);
    }
}
0