結果

問題 No.488 四角関係
ユーザー mosmos_21mosmos_21
提出日時 2017-06-22 11:17:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 255 ms / 5,000 ms
コード長 1,089 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 77,364 KB
実行使用メモリ 46,360 KB
最終ジャッジ日時 2024-10-02 10:19:45
合計ジャッジ時間 7,132 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
45,064 KB
testcase_01 AC 195 ms
44,760 KB
testcase_02 AC 209 ms
45,304 KB
testcase_03 AC 158 ms
42,612 KB
testcase_04 AC 192 ms
43,460 KB
testcase_05 AC 226 ms
45,592 KB
testcase_06 AC 197 ms
45,524 KB
testcase_07 AC 255 ms
45,964 KB
testcase_08 AC 244 ms
46,360 KB
testcase_09 AC 111 ms
40,064 KB
testcase_10 AC 160 ms
42,508 KB
testcase_11 AC 134 ms
41,252 KB
testcase_12 AC 154 ms
42,088 KB
testcase_13 AC 154 ms
42,292 KB
testcase_14 AC 146 ms
41,364 KB
testcase_15 AC 131 ms
41,292 KB
testcase_16 AC 129 ms
41,304 KB
testcase_17 AC 131 ms
41,336 KB
testcase_18 AC 117 ms
40,244 KB
testcase_19 AC 118 ms
40,296 KB
testcase_20 AC 116 ms
41,100 KB
testcase_21 AC 123 ms
41,184 KB
testcase_22 AC 126 ms
41,752 KB
testcase_23 AC 126 ms
41,164 KB
testcase_24 AC 118 ms
40,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    static Scanner in = new Scanner(System.in);
    static boolean[][] r;

    public static void main(String[] args) {
        int N = in.nextInt(), M = in.nextInt();
        r = new boolean[N][N];
        for (int i = 0; i < M; i++) {
            int a = in.nextInt(), b = in.nextInt();
            r[a][b] = r[b][a] = true;
        }
        int sum = 0;
        for (int a = 0; a < N - 3; a++) {
            for (int b = a + 1; b < N - 2; b++) {
                for (int c = b + 1; c < N - 1; c++) {
                    for (int d = c + 1; d < N; d++) {
                        sum += f(new int[] { a, b, c, d });
                    }
                }
            }
        }
        System.out.println(sum);
    }

    public static int f(int[] n) {
        boolean b = true;
        for(int i = 0; i < 4; i++){
            int a = 0;
            for(int j = 0; j < 4; j++){
                if(i == j) continue;
                if(r[n[i]][n[j]]) a++;
            }
            if(a != 2) b = false;
        }
        return b ? 1 : 0;
    }
}
0