結果

問題 No.52 よくある文字列の問題
ユーザー rn4rurn4ru
提出日時 2016-04-14 07:33:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 176 ms / 5,000 ms
コード長 690 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 77,328 KB
実行使用メモリ 55,160 KB
最終ジャッジ日時 2024-09-22 05:26:29
合計ジャッジ時間 4,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,684 KB
testcase_01 AC 154 ms
55,084 KB
testcase_02 AC 170 ms
54,992 KB
testcase_03 AC 156 ms
55,084 KB
testcase_04 AC 176 ms
54,848 KB
testcase_05 AC 175 ms
55,160 KB
testcase_06 AC 165 ms
54,896 KB
testcase_07 AC 173 ms
54,904 KB
testcase_08 AC 169 ms
54,936 KB
testcase_09 AC 131 ms
54,004 KB
testcase_10 AC 158 ms
54,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		String S = scanner.next();

		Set<String> s = new HashSet<>();
		f(S, "", s);
		System.out.println(s.size());
	}

	private static void f(String remaining, String newString, Set<String> set) {
		if (remaining.length() == 1) {
			set.add(newString + remaining);
		} else {
			String str = remaining.substring(1);
			f(str, newString + remaining.charAt(0), set);
			String str2 = remaining.substring(0, remaining.length() - 1);
			f(str2, newString + remaining.charAt(remaining.length() - 1), set);
		}
	}

}
0