結果

問題 No.2267 群の公理
ユーザー ks2mks2m
提出日時 2023-04-14 21:53:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 1,180 bytes
コンパイル時間 2,749 ms
コンパイル使用メモリ 77,172 KB
実行使用メモリ 43,252 KB
最終ジャッジ日時 2024-10-10 12:38:58
合計ジャッジ時間 12,194 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,068 KB
testcase_01 AC 133 ms
41,160 KB
testcase_02 AC 132 ms
41,540 KB
testcase_03 AC 136 ms
41,072 KB
testcase_04 AC 131 ms
41,152 KB
testcase_05 AC 129 ms
41,160 KB
testcase_06 AC 130 ms
40,996 KB
testcase_07 AC 131 ms
41,296 KB
testcase_08 AC 131 ms
41,412 KB
testcase_09 AC 129 ms
41,372 KB
testcase_10 AC 131 ms
41,032 KB
testcase_11 AC 134 ms
41,432 KB
testcase_12 AC 132 ms
41,380 KB
testcase_13 AC 134 ms
41,368 KB
testcase_14 AC 132 ms
41,160 KB
testcase_15 AC 134 ms
41,320 KB
testcase_16 AC 134 ms
41,228 KB
testcase_17 AC 134 ms
41,464 KB
testcase_18 AC 136 ms
41,540 KB
testcase_19 AC 134 ms
41,336 KB
testcase_20 AC 120 ms
40,072 KB
testcase_21 AC 132 ms
41,588 KB
testcase_22 AC 133 ms
41,168 KB
testcase_23 AC 134 ms
41,292 KB
testcase_24 AC 125 ms
40,344 KB
testcase_25 AC 141 ms
41,708 KB
testcase_26 AC 141 ms
41,292 KB
testcase_27 AC 151 ms
41,680 KB
testcase_28 AC 148 ms
41,452 KB
testcase_29 AC 147 ms
41,780 KB
testcase_30 AC 148 ms
41,676 KB
testcase_31 AC 152 ms
41,632 KB
testcase_32 AC 162 ms
41,700 KB
testcase_33 AC 159 ms
41,860 KB
testcase_34 AC 160 ms
41,680 KB
testcase_35 AC 179 ms
41,704 KB
testcase_36 AC 174 ms
42,160 KB
testcase_37 AC 181 ms
41,980 KB
testcase_38 AC 183 ms
42,328 KB
testcase_39 AC 178 ms
42,056 KB
testcase_40 AC 180 ms
41,968 KB
testcase_41 AC 180 ms
42,320 KB
testcase_42 AC 181 ms
42,276 KB
testcase_43 AC 183 ms
42,216 KB
testcase_44 AC 187 ms
42,176 KB
testcase_45 AC 187 ms
42,636 KB
testcase_46 AC 190 ms
43,252 KB
testcase_47 AC 179 ms
42,180 KB
testcase_48 AC 189 ms
42,436 KB
testcase_49 AC 175 ms
42,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 flg1 = true;
		label:
		for (int m0 = 0; m0 < n; m0++) {
			for (int m1 = 0; m1 < n; m1++) {
				for (int m2 = 0; m2 < n; m2++) {
					if (a[a[m0][m1]][m2] != a[m0][a[m1][m2]]) {
						flg1 = false;
						break label;
					}
				}
			}
		}
		if (!flg1) {
			System.out.println("No");
			return;
		}

		for (int e = 0; e < n; e++) {
			boolean flga = true;
			for (int m = 0; m < n; m++) {
				if (a[m][e] != a[e][m] || a[m][e] != m) {
					flga = false;
					break;
				}
			}
			if (flga) {
				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