結果

問題 No.2267 群の公理
ユーザー ks2mks2m
提出日時 2023-04-14 21:38:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 993 bytes
コンパイル時間 3,656 ms
コンパイル使用メモリ 76,796 KB
実行使用メモリ 56,676 KB
最終ジャッジ日時 2024-10-10 12:21:10
合計ジャッジ時間 11,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,120 KB
testcase_01 AC 128 ms
54,160 KB
testcase_02 AC 148 ms
54,072 KB
testcase_03 AC 127 ms
54,072 KB
testcase_04 AC 127 ms
54,336 KB
testcase_05 AC 131 ms
54,252 KB
testcase_06 AC 129 ms
54,252 KB
testcase_07 AC 130 ms
54,244 KB
testcase_08 AC 129 ms
54,244 KB
testcase_09 AC 128 ms
53,936 KB
testcase_10 AC 128 ms
54,128 KB
testcase_11 AC 129 ms
53,856 KB
testcase_12 AC 130 ms
54,128 KB
testcase_13 AC 131 ms
54,456 KB
testcase_14 AC 130 ms
53,808 KB
testcase_15 AC 134 ms
53,776 KB
testcase_16 AC 114 ms
52,712 KB
testcase_17 AC 132 ms
54,332 KB
testcase_18 AC 126 ms
54,380 KB
testcase_19 AC 127 ms
53,980 KB
testcase_20 AC 129 ms
54,172 KB
testcase_21 AC 134 ms
53,988 KB
testcase_22 AC 131 ms
54,052 KB
testcase_23 AC 129 ms
53,936 KB
testcase_24 AC 119 ms
53,044 KB
testcase_25 AC 139 ms
54,100 KB
testcase_26 AC 141 ms
54,124 KB
testcase_27 AC 154 ms
54,164 KB
testcase_28 WA -
testcase_29 AC 142 ms
53,992 KB
testcase_30 AC 143 ms
54,216 KB
testcase_31 AC 154 ms
54,100 KB
testcase_32 AC 147 ms
54,208 KB
testcase_33 AC 161 ms
53,968 KB
testcase_34 AC 156 ms
54,404 KB
testcase_35 AC 170 ms
54,156 KB
testcase_36 AC 175 ms
54,192 KB
testcase_37 AC 170 ms
54,764 KB
testcase_38 AC 174 ms
54,304 KB
testcase_39 AC 175 ms
54,624 KB
testcase_40 AC 171 ms
54,648 KB
testcase_41 AC 172 ms
54,316 KB
testcase_42 AC 179 ms
54,328 KB
testcase_43 AC 178 ms
54,256 KB
testcase_44 AC 178 ms
54,276 KB
testcase_45 AC 186 ms
54,752 KB
testcase_46 WA -
testcase_47 AC 168 ms
54,456 KB
testcase_48 AC 180 ms
54,340 KB
testcase_49 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[][] a = new int[n][n];
		for (int i = 0; i < n; i++) {
			for (int j = 0; j < n; j++) {
				a[i][j] = sc.nextInt();
			}
		}
		sc.close();

		boolean[] ek = new boolean[n];
		Arrays.fill(ek, true);
		for (int m = 0; m < n; m++) {
			for (int e = 0; e < n; e++) {
				if (a[m][e] == a[e][m] && a[m][e] == m) {
				} else {
					ek[e] = false;
				}
			}
		}
		for (int e = 0; e < n; e++) {
			if (ek[e]) {
				boolean flga = true;
				for (int m = 0; m < n; m++) {
					boolean flg = false;
					for (int i = 0; i < n; i++) {
						if (a[m][i] == a[i][m] && a[m][i] == e) {
							flg = true;
							break;
						}
					}
					if (!flg) {
						flga = false;
						break;
					}
				}
				if (flga) {
					System.out.println("Yes");
					return;
				}
			}
		}
		System.out.println("No");
	}
}
0