結果

問題 No.52 よくある文字列の問題
ユーザー kano_townkano_town
提出日時 2014-11-19 22:10:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 5,000 ms
コード長 555 bytes
コンパイル時間 3,556 ms
コンパイル使用メモリ 78,692 KB
実行使用メモリ 55,588 KB
最終ジャッジ日時 2024-09-22 05:19:23
合計ジャッジ時間 6,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
55,152 KB
testcase_01 AC 141 ms
54,632 KB
testcase_02 AC 167 ms
55,336 KB
testcase_03 AC 152 ms
55,076 KB
testcase_04 AC 172 ms
55,588 KB
testcase_05 AC 180 ms
55,488 KB
testcase_06 AC 172 ms
55,368 KB
testcase_07 AC 162 ms
55,148 KB
testcase_08 AC 156 ms
54,952 KB
testcase_09 AC 155 ms
54,768 KB
testcase_10 AC 158 ms
54,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Yukicoder52 {

	static HashSet hash = new HashSet();
	static String s = "";

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

		check("", 0, s.length()-1);
		System.out.println(hash.size());
	}

	static void check(String pat, int nowS, int nowE) {
		if (pat.length() == s.length()) {
			hash.add(pat);
			return;
		}
		check(pat + s.charAt(nowS), nowS+1, nowE);
		check(pat + s.charAt(nowE), nowS, nowE-1);
		
	}
}
0