結果

問題 No.197 手品
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-29 13:31:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,763 bytes
コンパイル時間 3,242 ms
コンパイル使用メモリ 78,072 KB
実行使用メモリ 37,208 KB
最終ジャッジ日時 2024-06-27 08:51:51
合計ジャッジ時間 6,810 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,948 KB
testcase_01 AC 50 ms
37,208 KB
testcase_02 AC 50 ms
36,780 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 51 ms
36,852 KB
testcase_06 AC 50 ms
37,048 KB
testcase_07 AC 49 ms
36,848 KB
testcase_08 AC 50 ms
36,920 KB
testcase_09 AC 50 ms
37,040 KB
testcase_10 AC 49 ms
36,908 KB
testcase_11 AC 51 ms
36,868 KB
testcase_12 AC 49 ms
37,048 KB
testcase_13 AC 51 ms
37,100 KB
testcase_14 AC 50 ms
36,840 KB
testcase_15 AC 49 ms
36,820 KB
testcase_16 AC 49 ms
37,184 KB
testcase_17 AC 52 ms
37,160 KB
testcase_18 AC 51 ms
37,172 KB
testcase_19 AC 50 ms
37,156 KB
testcase_20 AC 51 ms
37,152 KB
testcase_21 AC 51 ms
37,092 KB
testcase_22 AC 50 ms
36,832 KB
testcase_23 AC 51 ms
37,044 KB
testcase_24 AC 49 ms
36,528 KB
testcase_25 AC 50 ms
36,952 KB
testcase_26 AC 49 ms
36,704 KB
testcase_27 AC 49 ms
36,932 KB
testcase_28 AC 50 ms
36,832 KB
testcase_29 AC 51 ms
37,088 KB
testcase_30 AC 51 ms
37,108 KB
testcase_31 AC 49 ms
36,840 KB
testcase_32 AC 49 ms
36,872 KB
testcase_33 AC 52 ms
36,580 KB
testcase_34 AC 50 ms
37,132 KB
testcase_35 AC 50 ms
36,848 KB
testcase_36 AC 50 ms
37,208 KB
testcase_37 AC 49 ms
36,564 KB
testcase_38 AC 50 ms
37,060 KB
testcase_39 AC 51 ms
37,108 KB
testcase_40 AC 51 ms
36,876 KB
testcase_41 AC 49 ms
36,684 KB
testcase_42 AC 50 ms
36,704 KB
testcase_43 WA -
testcase_44 AC 49 ms
37,004 KB
testcase_45 AC 50 ms
36,924 KB
testcase_46 AC 50 ms
37,100 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 < args.length; 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