結果

問題 No.52 よくある文字列の問題
ユーザー mosmos_21mosmos_21
提出日時 2017-06-19 08:44:48
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
55,048 KB
testcase_01 AC 159 ms
54,784 KB
testcase_02 AC 175 ms
55,268 KB
testcase_03 AC 141 ms
54,264 KB
testcase_04 AC 172 ms
55,084 KB
testcase_05 AC 178 ms
55,188 KB
testcase_06 AC 166 ms
55,136 KB
testcase_07 AC 163 ms
55,108 KB
testcase_08 AC 159 ms
55,136 KB
testcase_09 AC 125 ms
54,184 KB
testcase_10 AC 153 ms
54,936 KB
権限があれば一括ダウンロードができます

ソースコード

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