結果

問題 No.488 四角関係
ユーザー yun_appyun_app
提出日時 2017-03-08 15:17:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 1,968 bytes
コンパイル時間 2,837 ms
コンパイル使用メモリ 77,588 KB
実行使用メモリ 39,324 KB
最終ジャッジ日時 2024-06-23 19:00:24
合計ジャッジ時間 5,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
37,600 KB
testcase_01 AC 80 ms
38,808 KB
testcase_02 AC 76 ms
37,452 KB
testcase_03 AC 56 ms
37,372 KB
testcase_04 AC 61 ms
37,208 KB
testcase_05 AC 79 ms
38,488 KB
testcase_06 AC 86 ms
38,864 KB
testcase_07 AC 95 ms
39,324 KB
testcase_08 AC 91 ms
38,856 KB
testcase_09 AC 50 ms
36,992 KB
testcase_10 AC 55 ms
37,500 KB
testcase_11 AC 51 ms
36,796 KB
testcase_12 AC 53 ms
37,368 KB
testcase_13 AC 54 ms
37,200 KB
testcase_14 AC 50 ms
37,120 KB
testcase_15 AC 50 ms
37,084 KB
testcase_16 AC 52 ms
36,800 KB
testcase_17 AC 51 ms
36,952 KB
testcase_18 AC 51 ms
37,044 KB
testcase_19 AC 51 ms
36,796 KB
testcase_20 AC 51 ms
37,048 KB
testcase_21 AC 51 ms
37,284 KB
testcase_22 AC 53 ms
37,220 KB
testcase_23 AC 53 ms
36,804 KB
testcase_24 AC 52 ms
37,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Main
{
    
    
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] lines = br.readLine().split(" ");
        int N = Integer.parseInt(lines[0]);
        int M = Integer.parseInt(lines[1]);
        
        int[][] nodeMap = new int[N][N];
        int a,b;
        for(int i=0;i<M;i++){
            lines = br.readLine().split(" ");
            a = Math.min(Integer.parseInt(lines[0]),Integer.parseInt(lines[1]));
            b = Math.max(Integer.parseInt(lines[0]),Integer.parseInt(lines[1]));
            nodeMap[a][b] = 1;
        }
        
        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++){
                        ans += check(nodeMap,i,j,k,l);
                    }
                }
            }
        }
        System.out.println(ans);
    }
    
    private static int check(int[][] nodeMap,int i,int j,int k,int l){
        if(nodeMap[i][j] == 1
        && nodeMap[i][k] == 0
        && nodeMap[i][l] == 1
        && nodeMap[j][k] == 1
        && nodeMap[j][l] == 0
        && nodeMap[k][l] == 1){
            return 1;
        }
        if(nodeMap[i][j] == 0
        && nodeMap[i][k] == 1
        && nodeMap[i][l] == 1
        && nodeMap[j][k] == 1
        && nodeMap[j][l] == 1
        && nodeMap[k][l] == 0){
            return 1;
        }
        if(nodeMap[i][j] == 1
        && nodeMap[i][k] == 1
        && nodeMap[i][l] == 0
        && nodeMap[j][k] == 0
        && nodeMap[j][l] == 1
        && nodeMap[k][l] == 1){
            return 1;
        }
        return 0;
    }
    
}
0