結果

問題 No.197 手品
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-29 00:19:37
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,453 bytes
コンパイル時間 3,248 ms
コンパイル使用メモリ 78,624 KB
実行使用メモリ 50,468 KB
最終ジャッジ日時 2024-06-27 08:15:05
合計ジャッジ時間 6,869 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,896 KB
testcase_01 AC 50 ms
36,824 KB
testcase_02 AC 51 ms
36,952 KB
testcase_03 AC 50 ms
37,084 KB
testcase_04 AC 50 ms
37,080 KB
testcase_05 AC 50 ms
37,028 KB
testcase_06 AC 50 ms
36,832 KB
testcase_07 AC 50 ms
36,908 KB
testcase_08 AC 50 ms
37,188 KB
testcase_09 AC 53 ms
36,920 KB
testcase_10 AC 51 ms
37,080 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 49 ms
37,204 KB
testcase_19 AC 50 ms
37,204 KB
testcase_20 AC 51 ms
37,024 KB
testcase_21 AC 50 ms
36,836 KB
testcase_22 WA -
testcase_23 AC 49 ms
36,576 KB
testcase_24 AC 51 ms
36,916 KB
testcase_25 AC 52 ms
36,812 KB
testcase_26 AC 51 ms
36,920 KB
testcase_27 AC 49 ms
36,836 KB
testcase_28 AC 53 ms
37,048 KB
testcase_29 AC 53 ms
36,704 KB
testcase_30 AC 50 ms
36,920 KB
testcase_31 AC 50 ms
37,040 KB
testcase_32 AC 50 ms
37,072 KB
testcase_33 AC 52 ms
37,056 KB
testcase_34 AC 50 ms
36,704 KB
testcase_35 AC 50 ms
37,048 KB
testcase_36 AC 49 ms
36,704 KB
testcase_37 AC 49 ms
36,816 KB
testcase_38 AC 49 ms
36,916 KB
testcase_39 AC 50 ms
37,028 KB
testcase_40 AC 50 ms
37,020 KB
testcase_41 AC 51 ms
37,068 KB
testcase_42 AC 50 ms
37,048 KB
testcase_43 AC 51 ms
37,040 KB
testcase_44 AC 53 ms
37,084 KB
testcase_45 AC 51 ms
37,048 KB
testcase_46 AC 49 ms
37,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No197 {

    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            String SBefore = br.readLine();
            int N = Integer.parseInt(br.readLine());
            String SAfter = br.readLine();
            if (dfs(N % 4, SBefore, SAfter)) {
                System.out.println("FAILURE");
            } else {
                System.out.println("SUCCESS");
            }

        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

    static boolean dfs(int N, String S, String SAfter) {
        if (N == 0) {
            if (S.equals(SAfter)) {
                return true;
            } else {
                return false;
            }
        }

        if (dfs(N - 1, swap(S, true), SAfter)) {
            return true;
        }

        if (dfs(N - 1, swap(S, false), SAfter)) {
            return true;
        }

        return false;
    }

    // trueなら左
    // falseなら右
    static String swap(String S, boolean changeSide) {
        char[] c = S.toCharArray();
        char swap = c[1];
        if (changeSide) {
            c[1] = c[0];
            c[0] = swap;
        } else {
            c[1] = c[2];
            c[2] = swap;
        }

        return new String(c);

    }

}
0