結果

問題 No.488 四角関係
ユーザー jp_stejp_ste
提出日時 2017-05-14 10:00:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 340 ms / 5,000 ms
コード長 1,333 bytes
コンパイル時間 2,137 ms
コンパイル使用メモリ 76,872 KB
実行使用メモリ 45,024 KB
最終ジャッジ日時 2024-09-16 05:46:22
合計ジャッジ時間 7,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
41,204 KB
testcase_01 AC 199 ms
41,980 KB
testcase_02 AC 189 ms
41,852 KB
testcase_03 AC 186 ms
41,780 KB
testcase_04 AC 194 ms
42,108 KB
testcase_05 AC 208 ms
41,924 KB
testcase_06 AC 177 ms
41,900 KB
testcase_07 AC 237 ms
42,836 KB
testcase_08 AC 340 ms
45,024 KB
testcase_09 AC 132 ms
41,080 KB
testcase_10 AC 174 ms
41,360 KB
testcase_11 AC 142 ms
40,928 KB
testcase_12 AC 172 ms
41,500 KB
testcase_13 AC 176 ms
41,708 KB
testcase_14 AC 141 ms
41,340 KB
testcase_15 AC 132 ms
41,208 KB
testcase_16 AC 134 ms
41,220 KB
testcase_17 AC 133 ms
41,020 KB
testcase_18 AC 135 ms
40,888 KB
testcase_19 AC 134 ms
41,168 KB
testcase_20 AC 133 ms
40,972 KB
testcase_21 AC 134 ms
41,504 KB
testcase_22 AC 134 ms
41,196 KB
testcase_23 AC 137 ms
40,868 KB
testcase_24 AC 139 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int n;
    static int m;
    static boolean list[][];
    static int ans = 0;
    
    public static void main(String[] args) throws Exception {
        Scanner scan = new Scanner(System.in);
        n = scan.nextInt();
        m = scan.nextInt();
        list = new boolean[n][n];
        for(int i=0; i<m; i++) {
            int left = scan.nextInt();
            int right = scan.nextInt();
            list[left][right] = true;
            list[right][left] = true;
        }
        for(int i=0; i<n; i++) {
            int connect[] = {i, -1, -1, -1};
            solve(connect, 0);
        }
        System.out.println(ans/8);
    }
    
    static void solve(int con[], int index) {
        int left = con[index];
        
        if(index == 3) {
            int right = con[0];
            if(list[left][right]) {
                if((!list[con[0]][con[2]]) && (!list[con[1]][con[3]])) {
                    ans++;
                }
            }
            return;    
        }
        
        for(int right=0; right<n; right++) {
            if(index > 0) {
                if(right == con[index-1]) continue;
            }
            if(list[left][right]) {
                con[index+1] = right;
                solve(con, index+1);
            }
        }
    }
}
0