結果

問題 No.52 よくある文字列の問題
ユーザー kano_townkano_town
提出日時 2014-11-19 22:10:48
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

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