結果

問題 No.488 四角関係
ユーザー GoryudyumaGoryudyuma
提出日時 2017-03-23 08:59:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 5,000 ms
コード長 2,003 bytes
コンパイル時間 2,383 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 43,908 KB
最終ジャッジ日時 2024-07-05 20:30:42
合計ジャッジ時間 6,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
41,364 KB
testcase_01 AC 190 ms
42,228 KB
testcase_02 AC 172 ms
41,872 KB
testcase_03 AC 150 ms
41,412 KB
testcase_04 AC 167 ms
41,792 KB
testcase_05 AC 190 ms
42,276 KB
testcase_06 AC 157 ms
41,416 KB
testcase_07 AC 192 ms
42,348 KB
testcase_08 AC 208 ms
43,908 KB
testcase_09 AC 124 ms
41,024 KB
testcase_10 AC 136 ms
41,220 KB
testcase_11 AC 130 ms
41,228 KB
testcase_12 AC 158 ms
41,364 KB
testcase_13 AC 140 ms
41,236 KB
testcase_14 AC 133 ms
41,664 KB
testcase_15 AC 119 ms
40,976 KB
testcase_16 AC 127 ms
41,096 KB
testcase_17 AC 123 ms
41,164 KB
testcase_18 AC 129 ms
41,404 KB
testcase_19 AC 129 ms
41,356 KB
testcase_20 AC 125 ms
41,180 KB
testcase_21 AC 109 ms
40,104 KB
testcase_22 AC 127 ms
41,152 KB
testcase_23 AC 135 ms
41,304 KB
testcase_24 AC 137 ms
41,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
        public static void main(String args[]) {
                try (Scanner sc = new Scanner(System.in)) {
                        int N = sc.nextInt(), M = sc.nextInt();
                        boolean[][] f = new boolean[N][N];
                        for (int i = 0; i < M; i++) {
                                int a = sc.nextInt(), b = sc.nextInt();
                                f[a][b] = true;
                                f[b][a] = true;
                        }
                        int ans = 0;
                        for (int i = 0; i < N; i++) {
                                for (int j = i + 1; j < N; j++) {
                                        for (int k = j + 1; k < N; k++) {
                                                for (int l = k + 1; l < N; l++) {
                                                        if (f[i][j]) {
                                                                if (f[i][k] && f[k][l] && f[l][j] && !f[i][l] && !f[j][k]) {
                                                                        ans++;
                                                                } else if(f[i][l] && f[k][l] && f[k][j] && !f[i][k] && !f[j][l])     {
                                                                        ans++;
                                                                }
                                                        } else {
                                                                if (!f[k][l] && f[i][k] &&f[i][l] && f[j][k] && f[j][l]) {
                                                                        ans++;
                                                                }
                                                        }
                                                }
                                        }
                                }
                        }
                        System.out.println(ans);
                }
        }
}
0