結果

問題 No.170 スワップ文字列(Easy)
ユーザー jp_stejp_ste
提出日時 2015-03-30 12:12:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 5,000 ms
コード長 762 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 76,840 KB
実行使用メモリ 60,656 KB
最終ジャッジ日時 2024-06-02 06:11:01
合計ジャッジ時間 7,204 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,724 KB
testcase_01 AC 270 ms
60,656 KB
testcase_02 AC 187 ms
46,604 KB
testcase_03 AC 197 ms
47,500 KB
testcase_04 AC 240 ms
48,528 KB
testcase_05 AC 270 ms
50,740 KB
testcase_06 AC 241 ms
51,764 KB
testcase_07 AC 173 ms
44,376 KB
testcase_08 AC 188 ms
47,452 KB
testcase_09 AC 219 ms
48,316 KB
testcase_10 AC 272 ms
50,144 KB
testcase_11 AC 127 ms
41,900 KB
testcase_12 AC 137 ms
41,900 KB
testcase_13 AC 146 ms
42,352 KB
testcase_14 AC 136 ms
42,728 KB
testcase_15 AC 168 ms
42,780 KB
testcase_16 AC 135 ms
42,156 KB
testcase_17 AC 130 ms
42,268 KB
testcase_18 AC 149 ms
42,404 KB
testcase_19 AC 138 ms
41,900 KB
testcase_20 AC 142 ms
42,484 KB
testcase_21 AC 145 ms
42,472 KB
testcase_22 AC 151 ms
42,552 KB
testcase_23 AC 140 ms
42,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.TreeSet;

public class Main {
	
	static TreeSet<String> mStrList = new TreeSet<String>();
	static String S = null;
	
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		S = sc.next();
		
		String str = "";
		boolean[] used = new boolean[S.length()];
		
		solve(str, used);
		System.out.println(mStrList.size());
	}
	
	static void solve(String str, boolean[] used) {
		
		if(str.length() == S.length()) {
			if(!str.equals(S)) {
				mStrList.add(str);
			}
			return;
		}
		
		for(int i=0; i<used.length; i++) {
			if(used[i]) { continue; }
			
			String nextStr = str + S.charAt(i);
			boolean[] nextUsed = used.clone();
			nextUsed[i] = true;
			
			solve(nextStr, nextUsed);
		}
	}
}
0