結果

問題 No.488 四角関係
ユーザー fal_rndfal_rnd
提出日時 2017-02-28 23:52:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 5,000 ms
コード長 693 bytes
コンパイル時間 3,648 ms
コンパイル使用メモリ 77,332 KB
実行使用メモリ 43,724 KB
最終ジャッジ日時 2024-06-12 00:44:59
合計ジャッジ時間 8,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
41,380 KB
testcase_01 AC 190 ms
42,100 KB
testcase_02 AC 180 ms
41,840 KB
testcase_03 AC 156 ms
41,696 KB
testcase_04 AC 185 ms
42,040 KB
testcase_05 AC 194 ms
42,308 KB
testcase_06 AC 164 ms
41,752 KB
testcase_07 AC 220 ms
42,948 KB
testcase_08 AC 208 ms
43,724 KB
testcase_09 AC 131 ms
41,084 KB
testcase_10 AC 145 ms
41,472 KB
testcase_11 AC 138 ms
41,128 KB
testcase_12 AC 157 ms
41,904 KB
testcase_13 AC 147 ms
41,556 KB
testcase_14 AC 136 ms
41,424 KB
testcase_15 AC 132 ms
41,040 KB
testcase_16 AC 129 ms
41,420 KB
testcase_17 AC 127 ms
41,392 KB
testcase_18 AC 135 ms
41,152 KB
testcase_19 AC 137 ms
41,036 KB
testcase_20 AC 131 ms
41,388 KB
testcase_21 AC 132 ms
41,408 KB
testcase_22 AC 132 ms
41,224 KB
testcase_23 AC 130 ms
41,460 KB
testcase_24 AC 135 ms
41,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class A{
	static Scanner s = new Scanner(System.in);
	static boolean dp[][];
	public static void main(String[] args) {
		int n=s.nextInt(),m=s.nextInt();
		dp = new boolean[n][n];
		for(int i=0;i<n;i++) dp[i][i]=true;
		for(int i=0;i<m;i++) {
			int a=s.nextInt(),b=s.nextInt();
			dp[a][b]=true;
			dp[b][a]=true;
		}

		int result=0;
		for(int i=0;i<n;i++) {
			for(int j=0;j<n;j++) {
				if(dp[i][j])
				for(int k=0;k<n;k++) {
					if(dp[j][k]&&!dp[i][k])
					for(int l=0;l<n;l++) {
						if(dp[k][l]&&dp[l][i]&&!dp[j][l]) {
							result++;
							//System.out.printf("%d,%d,%d,%d\n",i,j,k,l);
						}
					}
				}
			}
		}
		System.out.println(result/8);
	}
}
0