結果

問題 No.52 よくある文字列の問題
ユーザー kou6839kou6839
提出日時 2015-02-06 16:34:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 587 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 77,388 KB
実行使用メモリ 55,472 KB
最終ジャッジ日時 2024-09-22 05:19:31
合計ジャッジ時間 4,598 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
55,112 KB
testcase_01 AC 153 ms
55,156 KB
testcase_02 AC 176 ms
55,312 KB
testcase_03 AC 151 ms
55,108 KB
testcase_04 AC 172 ms
55,472 KB
testcase_05 AC 175 ms
55,384 KB
testcase_06 AC 179 ms
55,196 KB
testcase_07 AC 168 ms
55,064 KB
testcase_08 AC 157 ms
55,060 KB
testcase_09 AC 152 ms
54,796 KB
testcase_10 AC 151 ms
55,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

public class Main {
	static Set<String> ans;
	static void dfs(String to,String moto){
		if(moto.equals("")){
			ans.add(to);
			return;
		}
		String temp = to + moto.charAt(0);
		dfs(temp, moto.substring(1,moto.length()));
		temp=to+moto.charAt(moto.length()-1);
		dfs(temp, moto.substring(0,moto.length()-1));
		
	}
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        ans=new HashSet<>();
        String string = sc.next();
        dfs("", string);
        System.out.println(ans.size());
    }
}			
0