結果

問題 No.488 四角関係
ユーザー YamaKasaYamaKasa
提出日時 2018-09-24 15:02:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 211 ms / 5,000 ms
コード長 984 bytes
コンパイル時間 4,315 ms
コンパイル使用メモリ 77,028 KB
実行使用メモリ 57,008 KB
最終ジャッジ日時 2024-09-22 03:35:20
合計ジャッジ時間 7,584 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
54,212 KB
testcase_01 AC 195 ms
54,304 KB
testcase_02 AC 186 ms
54,444 KB
testcase_03 AC 157 ms
54,204 KB
testcase_04 AC 163 ms
54,244 KB
testcase_05 AC 202 ms
54,560 KB
testcase_06 AC 171 ms
54,816 KB
testcase_07 AC 211 ms
55,032 KB
testcase_08 AC 210 ms
57,008 KB
testcase_09 AC 131 ms
54,092 KB
testcase_10 AC 143 ms
54,204 KB
testcase_11 AC 139 ms
53,928 KB
testcase_12 AC 155 ms
54,292 KB
testcase_13 AC 150 ms
54,100 KB
testcase_14 AC 139 ms
53,804 KB
testcase_15 AC 132 ms
53,932 KB
testcase_16 AC 131 ms
53,824 KB
testcase_17 AC 133 ms
53,924 KB
testcase_18 AC 129 ms
54,040 KB
testcase_19 AC 132 ms
53,952 KB
testcase_20 AC 125 ms
54,064 KB
testcase_21 AC 129 ms
54,192 KB
testcase_22 AC 128 ms
54,108 KB
testcase_23 AC 127 ms
53,972 KB
testcase_24 AC 133 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		int[]a = new int[M];
		int[]b = new int[M];
		for(int i = 0; i < M; i++) {
			a[i] = scan.nextInt();
			b[i] = scan.nextInt();
		}
		scan.close();
		if(M < 4 || N < 4) {
			System.out.println(0);
			System.exit(0);
		}
		int[][]G = new int[N][N];
		for(int i = 0; i < M; i++) {
			G[a[i]][b[i]] = 1;
			G[b[i]][a[i]] = 1;
		}
		int cnt = 0;
		for(int i = 0; i < N - 3; i++) {
			for(int j = i + 1; j < N - 2; j++) {
				for(int k = j + 1; k < N - 1; k++) {
					for(int l = k + 1; l < N; l++) {
						int d1 = G[i][j] + G[i][k] + G[i][l];
						int d2 = G[j][i] + G[j][k] + G[j][l];
						int d3 = G[k][i] + G[k][j] + G[k][l];
						int d4 = G[l][i] + G[l][j] + G[l][k];
						if(d1 == 2 && d2 == 2 && d3 == 2 && d4 == 2) {
							cnt ++;
						}
					}
				}
			}
		}
		System.out.println(cnt);
	}
}
0