結果

問題 No.2267 群の公理
ユーザー ks2mks2m
提出日時 2023-04-14 21:45:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,291 bytes
コンパイル時間 2,674 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 42,892 KB
最終ジャッジ日時 2024-10-10 12:28:29
合計ジャッジ時間 11,848 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,448 KB
testcase_01 AC 129 ms
41,280 KB
testcase_02 AC 131 ms
41,776 KB
testcase_03 AC 133 ms
41,492 KB
testcase_04 AC 131 ms
41,288 KB
testcase_05 AC 133 ms
41,668 KB
testcase_06 AC 135 ms
41,344 KB
testcase_07 AC 130 ms
41,600 KB
testcase_08 AC 130 ms
41,592 KB
testcase_09 AC 130 ms
41,376 KB
testcase_10 AC 133 ms
41,696 KB
testcase_11 AC 133 ms
41,748 KB
testcase_12 AC 133 ms
41,676 KB
testcase_13 AC 133 ms
41,452 KB
testcase_14 AC 130 ms
41,500 KB
testcase_15 AC 132 ms
41,516 KB
testcase_16 AC 135 ms
41,496 KB
testcase_17 WA -
testcase_18 AC 132 ms
41,524 KB
testcase_19 AC 135 ms
41,208 KB
testcase_20 AC 119 ms
40,488 KB
testcase_21 AC 132 ms
41,480 KB
testcase_22 AC 133 ms
41,644 KB
testcase_23 AC 139 ms
41,164 KB
testcase_24 AC 136 ms
41,604 KB
testcase_25 AC 139 ms
41,824 KB
testcase_26 AC 139 ms
41,636 KB
testcase_27 AC 143 ms
41,628 KB
testcase_28 AC 143 ms
41,976 KB
testcase_29 AC 155 ms
41,764 KB
testcase_30 AC 148 ms
42,124 KB
testcase_31 AC 156 ms
41,720 KB
testcase_32 AC 151 ms
41,720 KB
testcase_33 AC 156 ms
41,976 KB
testcase_34 AC 157 ms
41,720 KB
testcase_35 AC 176 ms
42,472 KB
testcase_36 AC 177 ms
41,864 KB
testcase_37 AC 180 ms
42,832 KB
testcase_38 AC 180 ms
42,304 KB
testcase_39 AC 178 ms
42,136 KB
testcase_40 AC 183 ms
42,192 KB
testcase_41 AC 174 ms
42,340 KB
testcase_42 AC 178 ms
42,636 KB
testcase_43 AC 180 ms
42,276 KB
testcase_44 AC 188 ms
42,892 KB
testcase_45 AC 191 ms
42,520 KB
testcase_46 AC 178 ms
42,416 KB
testcase_47 AC 188 ms
42,324 KB
testcase_48 AC 185 ms
42,384 KB
testcase_49 AC 189 ms
42,788 KB
権限があれば一括ダウンロードができます

ソースコード

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;
					break;
				}
			}
		}
		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) {
					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]]) {
									flga = false;
									break label;
								}
							}
						}
					}
					if (flga) {
						System.out.println("Yes");
						return;
					}
				}
			}
		}
		System.out.println("No");
	}
}
0