結果

問題 No.197 手品
ユーザー ぴろずぴろず
提出日時 2015-04-28 23:48:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 1,387 bytes
コンパイル時間 3,715 ms
コンパイル使用メモリ 76,348 KB
実行使用メモリ 41,356 KB
最終ジャッジ日時 2024-07-20 03:33:40
合計ジャッジ時間 10,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,164 KB
testcase_01 AC 97 ms
39,548 KB
testcase_02 AC 112 ms
41,068 KB
testcase_03 AC 100 ms
40,168 KB
testcase_04 AC 116 ms
41,328 KB
testcase_05 AC 106 ms
39,876 KB
testcase_06 AC 126 ms
41,332 KB
testcase_07 AC 120 ms
40,916 KB
testcase_08 AC 115 ms
40,988 KB
testcase_09 AC 118 ms
41,168 KB
testcase_10 AC 115 ms
41,056 KB
testcase_11 AC 112 ms
41,012 KB
testcase_12 AC 118 ms
41,040 KB
testcase_13 AC 111 ms
40,908 KB
testcase_14 AC 112 ms
41,324 KB
testcase_15 AC 104 ms
39,748 KB
testcase_16 AC 118 ms
41,280 KB
testcase_17 AC 118 ms
40,888 KB
testcase_18 AC 113 ms
41,172 KB
testcase_19 AC 114 ms
41,340 KB
testcase_20 AC 115 ms
40,916 KB
testcase_21 AC 118 ms
40,776 KB
testcase_22 AC 120 ms
41,356 KB
testcase_23 AC 115 ms
41,056 KB
testcase_24 AC 110 ms
40,608 KB
testcase_25 AC 108 ms
40,156 KB
testcase_26 AC 115 ms
40,884 KB
testcase_27 AC 113 ms
41,264 KB
testcase_28 AC 119 ms
41,144 KB
testcase_29 AC 95 ms
39,912 KB
testcase_30 AC 108 ms
40,284 KB
testcase_31 AC 117 ms
40,792 KB
testcase_32 AC 115 ms
40,956 KB
testcase_33 AC 112 ms
41,156 KB
testcase_34 AC 115 ms
40,784 KB
testcase_35 AC 126 ms
41,232 KB
testcase_36 AC 112 ms
40,948 KB
testcase_37 AC 112 ms
41,124 KB
testcase_38 AC 123 ms
41,080 KB
testcase_39 AC 119 ms
41,036 KB
testcase_40 AC 106 ms
40,172 KB
testcase_41 AC 104 ms
40,268 KB
testcase_42 AC 117 ms
41,248 KB
testcase_43 AC 113 ms
40,788 KB
testcase_44 AC 117 ms
41,044 KB
testcase_45 AC 111 ms
41,176 KB
testcase_46 AC 113 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no197;

import java.util.Scanner;

public class Main {
	/*
	 * 123
	 * 132
	 * 213
	 * 231
	 * 312
	 * 321
	 */
	static int[][] perm = {{1,2,3},{1,3,2},{2,1,3},{2,3,1},{3,1,2},{3,2,1}};
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] bef = sc.next().toCharArray();
		long n = sc.nextLong();
		char[] aft = sc.next().toCharArray();

		int[][] a = {{0,1,1,0,0,0},{1,0,0,0,1,0},{1,0,0,1,0,0},{0,0,1,0,0,1},{0,1,0,0,0,1},{0,0,0,1,1,0}};
        int[][] x = new int[6][6];
        for(int i=0;i<6;i++) {
            x[i][i] = 1;
        }
        while(n > 0) {
            if (n % 2 == 1) {
                x = mul(x,a);
            }
            a = mul(a,a);
            n /= 2;
        }

        LOOP: for(int i=0;i<6;i++) {
        	if (x[0][i] == 1) {
        		for(int j=0;j<3;j++) {
        			if (bef[j] != aft[perm[i][j]-1]) {
        				continue LOOP;
        			}
        		}
        		System.out.println("FAILURE");
        		return;
        	}
        }
        System.out.println("SUCCESS");
	}
    static int[][] mul(int[][] a,int[][] b) {
        int n = a.length;
        int[][] c = new int[n][n];
        for(int i=0;i<n;i++) {
            for(int j=0;j<n;j++) {
                for(int k=0;k<n;k++) {
                    c[i][j] |= a[i][k] & b[k][j];
                }
            }
        }
        return c;
    }
}
0