結果

問題 No.52 よくある文字列の問題
ユーザー mosmos_21mosmos_21
提出日時 2017-06-19 08:44:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 536 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 78,148 KB
実行使用メモリ 55,268 KB
最終ジャッジ日時 2024-09-22 05:30:53
合計ジャッジ時間 4,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {
	static Scanner in = new Scanner(System.in);
	static Set<String> set = new HashSet<>();
	public static void main(String[] args) {
		String s = in.next();
		f(s, "");
		System.out.println(set.size());
	}
	
	public static void f(String s1, String s2){
		if(s1.length() == 1){
			set.add(s2 + s1);
		}else{
			f(s1.substring(0, s1.length() - 1), s2 + s1.charAt(s1.length() - 1));
			f(s1.substring(1, s1.length()), s2 + s1.charAt(0));
		}
	}
}
0