結果

問題 No.52 よくある文字列の問題
ユーザー tsunabittsunabit
提出日時 2019-12-13 14:37:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 794 bytes
コンパイル時間 3,702 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 55,628 KB
最終ジャッジ日時 2024-06-27 02:29:46
合計ジャッジ時間 6,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,672 KB
testcase_01 AC 156 ms
54,740 KB
testcase_02 AC 178 ms
55,328 KB
testcase_03 AC 157 ms
54,608 KB
testcase_04 AC 173 ms
55,628 KB
testcase_05 AC 173 ms
55,304 KB
testcase_06 AC 169 ms
55,132 KB
testcase_07 AC 176 ms
54,780 KB
testcase_08 AC 161 ms
55,016 KB
testcase_09 AC 151 ms
55,020 KB
testcase_10 AC 143 ms
54,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No52 {
	private static Set<String> set = new HashSet<String>();
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		dfs("", s);
		System.out.println(set.size());
	}
	
	public static void dfs(String kiridasi, String zan_str) {
		//end
		if(zan_str.length() == 0) {
			set.add(kiridasi);
			return;
		}
		//mae
		String mae = kiridasi + zan_str.charAt(0);
		StringBuilder sb_mae = new StringBuilder(zan_str);
		dfs(mae, sb_mae.deleteCharAt(0).toString());
		//ushiro
		String ushiro = kiridasi + zan_str.charAt(zan_str.length() - 1);
		StringBuilder sb_ushiro = new StringBuilder(zan_str);
		dfs(ushiro, sb_ushiro.deleteCharAt(zan_str.length() - 1).toString());
		
	}
}
0