結果

問題 No.197 手品
ユーザー thorikawathorikawa
提出日時 2015-04-28 23:33:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,399 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 79,908 KB
実行使用メモリ 57,244 KB
最終ジャッジ日時 2024-06-27 07:14:23
合計ジャッジ時間 11,189 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
54,916 KB
testcase_01 AC 160 ms
54,824 KB
testcase_02 AC 161 ms
55,000 KB
testcase_03 AC 164 ms
54,864 KB
testcase_04 AC 156 ms
54,756 KB
testcase_05 AC 152 ms
54,668 KB
testcase_06 AC 162 ms
55,032 KB
testcase_07 AC 166 ms
55,280 KB
testcase_08 AC 155 ms
54,820 KB
testcase_09 AC 129 ms
54,072 KB
testcase_10 AC 165 ms
55,076 KB
testcase_11 AC 161 ms
54,796 KB
testcase_12 AC 161 ms
54,924 KB
testcase_13 AC 162 ms
55,096 KB
testcase_14 AC 167 ms
55,184 KB
testcase_15 AC 163 ms
55,356 KB
testcase_16 AC 164 ms
55,124 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 127 ms
54,128 KB
testcase_24 AC 163 ms
54,884 KB
testcase_25 AC 165 ms
55,220 KB
testcase_26 AC 150 ms
54,712 KB
testcase_27 AC 163 ms
54,848 KB
testcase_28 AC 160 ms
55,184 KB
testcase_29 AC 161 ms
54,844 KB
testcase_30 AC 153 ms
54,692 KB
testcase_31 AC 133 ms
53,968 KB
testcase_32 AC 132 ms
54,072 KB
testcase_33 AC 169 ms
54,920 KB
testcase_34 AC 172 ms
55,036 KB
testcase_35 AC 170 ms
54,848 KB
testcase_36 AC 165 ms
55,064 KB
testcase_37 WA -
testcase_38 AC 165 ms
54,952 KB
testcase_39 AC 167 ms
55,004 KB
testcase_40 AC 167 ms
54,768 KB
testcase_41 AC 162 ms
55,016 KB
testcase_42 AC 146 ms
55,132 KB
testcase_43 AC 167 ms
54,880 KB
testcase_44 WA -
testcase_45 AC 164 ms
54,772 KB
testcase_46 AC 161 ms
54,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

/**
 * Created by poly on 11/29/14.
 */
public class Main {
    static Set<String> cand(Set<String> set) {
        Set<String> list = new HashSet<String>();
        for (String s : set) {
            String a = "" + s.charAt(1) + s.charAt(0) + s.charAt(2);
            String b = "" + s.charAt(0) + s.charAt(2) + s.charAt(1);
            list.add(a);
            list.add(b);
        }
        return list;
    }

    public static void main(String[] argv) {
        Scanner scanner = new Scanner(System.in);
        String before = scanner.next();
        int n = scanner.nextInt();
        String after = scanner.next();
        if (n == 0) {
            if (after.equals(before)) {
                System.out.println("FAILURE");
            } else {
                System.out.println("SUCCESS");
            }
            return;
        }
        Set<String> input = new HashSet<String>();
        input.add(before);
        Set<String> one = cand(input);
        if (n % 2 == 1) {
            if (one.contains(after)) {
                System.out.println("FAILURE");
            } else {
                System.out.println("SUCCESS");
            }
            return;
        }
        Set<String> two = cand(one);
        if (two.contains(after)) {
            System.out.println("FAILURE");
        } else {
            System.out.println("SUCCESS");
        }
    }
}
0