結果

問題 No.52 よくある文字列の問題
ユーザー GrenacheGrenache
提出日時 2015-11-03 19:33:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 802 bytes
コンパイル時間 3,298 ms
コンパイル使用メモリ 77,444 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-09-22 05:23:47
合計ジャッジ時間 5,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,248 KB
testcase_01 AC 123 ms
53,956 KB
testcase_02 AC 119 ms
53,172 KB
testcase_03 AC 123 ms
54,068 KB
testcase_04 AC 131 ms
54,004 KB
testcase_05 AC 137 ms
54,112 KB
testcase_06 AC 138 ms
54,276 KB
testcase_07 AC 133 ms
54,152 KB
testcase_08 AC 131 ms
54,220 KB
testcase_09 AC 129 ms
53,832 KB
testcase_10 AC 129 ms
54,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder52 {

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

        char[] s = sc.next().toCharArray();
        int n = s.length;

        Set<String> hs = new HashSet<String>();
        for (int i = 0; i < 0x1 << n; i++) {
        	int st = 0;
        	int en = n - 1;
        	StringBuilder tmp = new StringBuilder();
        	for (int j = 0; j < n; j++) {
        		if ((i & 0x1 << j) == 0) {
        			tmp.append(s[st]);
        			st++;
        		} else {
        			tmp.append(s[en]);
        			en--;
        		}
        	}
        	
        	hs.add(tmp.toString());
        }
        
        System.out.println(hs.size());

        sc.close();
    }
}
0