結果

問題 No.170 スワップ文字列(Easy)
ユーザー nCk_cvnCk_cv
提出日時 2016-02-18 15:46:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 947 ms / 5,000 ms
コード長 769 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 82,992 KB
実行使用メモリ 82,456 KB
最終ジャッジ日時 2024-09-22 11:56:50
合計ジャッジ時間 9,085 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,132 KB
testcase_01 AC 915 ms
82,032 KB
testcase_02 AC 111 ms
52,956 KB
testcase_03 AC 115 ms
52,872 KB
testcase_04 AC 163 ms
56,672 KB
testcase_05 AC 947 ms
82,456 KB
testcase_06 AC 947 ms
80,492 KB
testcase_07 AC 128 ms
54,132 KB
testcase_08 AC 148 ms
54,068 KB
testcase_09 AC 145 ms
53,992 KB
testcase_10 AC 519 ms
76,568 KB
testcase_11 AC 124 ms
54,156 KB
testcase_12 AC 125 ms
53,780 KB
testcase_13 AC 124 ms
54,180 KB
testcase_14 AC 121 ms
54,068 KB
testcase_15 AC 151 ms
56,172 KB
testcase_16 AC 126 ms
54,112 KB
testcase_17 AC 125 ms
53,856 KB
testcase_18 AC 125 ms
54,056 KB
testcase_19 AC 123 ms
53,780 KB
testcase_20 AC 121 ms
54,000 KB
testcase_21 AC 125 ms
53,988 KB
testcase_22 AC 129 ms
54,028 KB
testcase_23 AC 125 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.awt.geom.*;
import java.io.*;

class Main {
	static HashMap<String,Boolean> map = new HashMap<String,Boolean>();
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String in = sc.next();
		dfs(new StringBuilder(in));
		System.out.println(map.size()-1);
	}
	static void dfs(StringBuilder a) {
		if(map.containsKey(a.toString())) return;
		map.put(a.toString(), true);
		for(int i = 0; i < a.length(); i++) {
			for(int j = i+1; j < a.length(); j++) {
				char b = a.charAt(i);
				a = a.replace(i, i+1, String.valueOf(a.charAt(j)));
				a = a.replace(j, j+1, String.valueOf(b));
				dfs(a);
				a = a.replace(j, j+1, String.valueOf(a.charAt(i)));
				a = a.replace(i, i+1, String.valueOf(b));
			}
		}
	}
}
0