結果

問題 No.197 手品
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-29 13:34:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 1,753 bytes
コンパイル時間 3,638 ms
コンパイル使用メモリ 78,564 KB
実行使用メモリ 36,988 KB
最終ジャッジ日時 2024-07-20 03:36:38
合計ジャッジ時間 7,595 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,736 KB
testcase_01 AC 53 ms
36,592 KB
testcase_02 AC 52 ms
36,456 KB
testcase_03 AC 52 ms
36,428 KB
testcase_04 AC 51 ms
36,988 KB
testcase_05 AC 52 ms
36,436 KB
testcase_06 AC 55 ms
36,640 KB
testcase_07 AC 54 ms
36,732 KB
testcase_08 AC 53 ms
36,924 KB
testcase_09 AC 51 ms
36,920 KB
testcase_10 AC 53 ms
36,908 KB
testcase_11 AC 52 ms
36,600 KB
testcase_12 AC 52 ms
36,952 KB
testcase_13 AC 52 ms
36,728 KB
testcase_14 AC 53 ms
36,900 KB
testcase_15 AC 52 ms
36,968 KB
testcase_16 AC 54 ms
36,456 KB
testcase_17 AC 52 ms
36,692 KB
testcase_18 AC 54 ms
36,368 KB
testcase_19 AC 53 ms
36,452 KB
testcase_20 AC 52 ms
36,548 KB
testcase_21 AC 53 ms
36,452 KB
testcase_22 AC 52 ms
36,872 KB
testcase_23 AC 51 ms
36,724 KB
testcase_24 AC 54 ms
36,536 KB
testcase_25 AC 51 ms
36,724 KB
testcase_26 AC 52 ms
36,972 KB
testcase_27 AC 51 ms
36,976 KB
testcase_28 AC 51 ms
36,564 KB
testcase_29 AC 52 ms
36,708 KB
testcase_30 AC 52 ms
36,448 KB
testcase_31 AC 52 ms
36,724 KB
testcase_32 AC 53 ms
36,808 KB
testcase_33 AC 56 ms
36,608 KB
testcase_34 AC 52 ms
36,868 KB
testcase_35 AC 53 ms
36,968 KB
testcase_36 AC 52 ms
36,832 KB
testcase_37 AC 52 ms
36,628 KB
testcase_38 AC 51 ms
36,732 KB
testcase_39 AC 51 ms
36,312 KB
testcase_40 AC 50 ms
36,816 KB
testcase_41 AC 55 ms
36,408 KB
testcase_42 AC 52 ms
36,432 KB
testcase_43 AC 53 ms
36,656 KB
testcase_44 AC 53 ms
36,836 KB
testcase_45 AC 52 ms
36,904 KB
testcase_46 AC 51 ms
36,724 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();

            // コインの枚数を数える
            int bCoin = 0;
            int aCoin = 0;
            for (int i = 0; i < 3; i++) {
                if (SBefore.substring(i, i + 1).equals("o")) {
                    bCoin++;
                }
                if (SAfter.substring(i, i + 1).equals("o")) {
                    aCoin++;
                }
            }

            String str = "FAILURE";
            if (aCoin != bCoin) {
                str = "SUCCESS";
            } else {

                if (N == 0 && !SBefore.equals(SAfter)) {
                    str = "SUCCESS";
                } else if (N == 1) {
                    if (!swap(SBefore, true).equals(SAfter)
                            && !swap(SBefore, false).equals(SAfter)) {
                        str = "SUCCESS";
                    }
                }

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

    // 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