結果

問題 No.197 手品
ユーザー thorikawathorikawa
提出日時 2015-04-28 23:49:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 1,660 bytes
コンパイル時間 2,626 ms
コンパイル使用メモリ 79,660 KB
実行使用メモリ 42,648 KB
最終ジャッジ日時 2024-07-20 03:33:54
合計ジャッジ時間 10,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
42,288 KB
testcase_01 AC 144 ms
42,572 KB
testcase_02 AC 135 ms
42,072 KB
testcase_03 AC 157 ms
42,528 KB
testcase_04 AC 154 ms
42,112 KB
testcase_05 AC 155 ms
42,360 KB
testcase_06 AC 151 ms
42,428 KB
testcase_07 AC 133 ms
42,484 KB
testcase_08 AC 149 ms
42,372 KB
testcase_09 AC 119 ms
41,312 KB
testcase_10 AC 160 ms
42,412 KB
testcase_11 AC 153 ms
42,344 KB
testcase_12 AC 143 ms
42,292 KB
testcase_13 AC 153 ms
42,216 KB
testcase_14 AC 145 ms
42,324 KB
testcase_15 AC 139 ms
42,264 KB
testcase_16 AC 145 ms
42,020 KB
testcase_17 AC 146 ms
42,360 KB
testcase_18 AC 147 ms
42,648 KB
testcase_19 AC 156 ms
42,196 KB
testcase_20 AC 145 ms
42,412 KB
testcase_21 AC 141 ms
42,312 KB
testcase_22 AC 140 ms
42,444 KB
testcase_23 AC 123 ms
40,932 KB
testcase_24 AC 148 ms
42,288 KB
testcase_25 AC 147 ms
42,320 KB
testcase_26 AC 150 ms
42,404 KB
testcase_27 AC 154 ms
42,368 KB
testcase_28 AC 153 ms
42,544 KB
testcase_29 AC 137 ms
42,280 KB
testcase_30 AC 147 ms
42,464 KB
testcase_31 AC 100 ms
39,764 KB
testcase_32 AC 102 ms
40,040 KB
testcase_33 AC 133 ms
42,536 KB
testcase_34 AC 147 ms
42,416 KB
testcase_35 AC 150 ms
42,504 KB
testcase_36 AC 130 ms
41,928 KB
testcase_37 AC 160 ms
42,496 KB
testcase_38 AC 132 ms
42,016 KB
testcase_39 AC 136 ms
42,480 KB
testcase_40 AC 157 ms
42,604 KB
testcase_41 AC 145 ms
42,492 KB
testcase_42 AC 145 ms
42,508 KB
testcase_43 AC 148 ms
42,276 KB
testcase_44 AC 155 ms
42,484 KB
testcase_45 AC 164 ms
42,444 KB
testcase_46 AC 146 ms
42,392 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 == 1) {
            if (one.contains(after)) {
                System.out.println("FAILURE");
            } else {
                System.out.println("SUCCESS");
            }
            return;
        }
        Set<String> two = cand(one);
        if (n % 2 == 0) {
            if (two.contains(after)) {
                System.out.println("FAILURE");
            } else {
                System.out.println("SUCCESS");
            }
            return;
        }
        Set<String> three = cand(two);
        if (three.contains(after)) {
            System.out.println("FAILURE");
        } else {
            System.out.println("SUCCESS");
        }
    }
}
0