結果

問題 No.170 スワップ文字列(Easy)
ユーザー shora_kujira16shora_kujira16
提出日時 2015-03-22 23:32:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 219 ms / 5,000 ms
コード長 1,673 bytes
コンパイル時間 1,926 ms
コンパイル使用メモリ 77,952 KB
実行使用メモリ 49,312 KB
最終ジャッジ日時 2024-06-02 06:05:36
合計ジャッジ時間 4,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,884 KB
testcase_01 AC 210 ms
49,236 KB
testcase_02 AC 49 ms
37,240 KB
testcase_03 AC 46 ms
37,160 KB
testcase_04 AC 54 ms
37,676 KB
testcase_05 AC 202 ms
48,668 KB
testcase_06 AC 219 ms
49,312 KB
testcase_07 AC 46 ms
36,880 KB
testcase_08 AC 46 ms
37,144 KB
testcase_09 AC 46 ms
36,908 KB
testcase_10 AC 153 ms
46,128 KB
testcase_11 AC 45 ms
37,012 KB
testcase_12 AC 44 ms
36,904 KB
testcase_13 AC 46 ms
36,916 KB
testcase_14 AC 47 ms
37,392 KB
testcase_15 AC 51 ms
37,272 KB
testcase_16 AC 43 ms
37,188 KB
testcase_17 AC 44 ms
36,916 KB
testcase_18 AC 44 ms
37,044 KB
testcase_19 AC 45 ms
37,420 KB
testcase_20 AC 46 ms
37,160 KB
testcase_21 AC 45 ms
37,160 KB
testcase_22 AC 44 ms
37,200 KB
testcase_23 AC 43 ms
37,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    private void run() {
        String S = read();
        HashSet<String> set = new HashSet<String>();
        set.add(S);
        Stack<String> stk = new Stack<String>();
        stk.push(S);
        while (!stk.isEmpty()) {
            String t = stk.pop();
            for (int i = 0; i < t.length() - 1; i++) {
                char[] uu = t.toCharArray();
                char tmp = uu[i];
                uu[i] = uu[i + 1];
                uu[i + 1] = tmp;
                String u = new String(uu);
                if (!set.contains(u)) {
                    set.add(u);
                    stk.push(u);
                }
            }
        }
        sysout.println(set.size() - 1);
    }

    public static void main(String[] args) {
        new Main().run();
    }

    // flush automatically iff you call `println` or `printf` or `format`.
    PrintWriter sysout = new PrintWriter(System.out, true);

    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer buffer = null;

    String readLine() {
        buffer = null;
        try {
            return in.readLine();
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }

    String read() {
        if (buffer == null || !buffer.hasMoreTokens()) {
            buffer = new StringTokenizer(readLine());
        }
        return buffer.nextToken();
    }

    int readInt() {
        return Integer.parseInt(read());
    }

    long readLong() {
        return Long.parseLong(read());
    }

    double readDouble() {
        return Double.parseDouble(read());
    }
}
0