結果

問題 No.170 スワップ文字列(Easy)
ユーザー tentententen
提出日時 2022-07-29 10:09:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 5,000 ms
コード長 1,549 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 78,236 KB
実行使用メモリ 47,268 KB
最終ジャッジ日時 2024-07-19 01:44:28
合計ジャッジ時間 5,271 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,944 KB
testcase_01 AC 104 ms
46,836 KB
testcase_02 AC 85 ms
41,316 KB
testcase_03 AC 86 ms
41,204 KB
testcase_04 AC 87 ms
41,216 KB
testcase_05 AC 109 ms
46,868 KB
testcase_06 AC 109 ms
47,268 KB
testcase_07 AC 55 ms
37,328 KB
testcase_08 AC 88 ms
41,264 KB
testcase_09 AC 87 ms
41,328 KB
testcase_10 AC 96 ms
42,356 KB
testcase_11 AC 43 ms
36,440 KB
testcase_12 AC 42 ms
36,832 KB
testcase_13 AC 44 ms
36,792 KB
testcase_14 AC 43 ms
36,588 KB
testcase_15 AC 45 ms
36,736 KB
testcase_16 AC 44 ms
36,552 KB
testcase_17 AC 44 ms
36,632 KB
testcase_18 AC 44 ms
36,568 KB
testcase_19 AC 43 ms
36,584 KB
testcase_20 AC 42 ms
37,012 KB
testcase_21 AC 45 ms
36,736 KB
testcase_22 AC 44 ms
36,756 KB
testcase_23 AC 43 ms
36,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static HashSet<String> strings = new HashSet<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] input = sc.next().toCharArray();
        search(0, input, new char[input.length], new boolean[input.length]);
        System.out.println(strings.size() - 1);
    }
    
    static void search(int idx, char[] input, char[] output, boolean[] used) {
        if (idx >= input.length) {
            strings.add(new String(output));
            return;
        }
        for (int i = 0; i < input.length; i++) {
            if (used[i]) {
                continue;
            }
            used[i] = true;
            output[idx] = input[i];
            search(idx + 1, input, output, used);
            used[i] = false;
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0