結果

問題 No.52 よくある文字列の問題
ユーザー 37zigen37zigen
提出日時 2020-02-18 10:44:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 5,000 ms
コード長 688 bytes
コンパイル時間 2,735 ms
コンパイル使用メモリ 86,532 KB
実行使用メモリ 43,596 KB
最終ジャッジ日時 2024-10-06 15:25:30
合計ジャッジ時間 5,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,608 KB
testcase_01 AC 156 ms
42,256 KB
testcase_02 AC 208 ms
43,100 KB
testcase_03 AC 146 ms
41,880 KB
testcase_04 AC 204 ms
43,140 KB
testcase_05 AC 203 ms
43,596 KB
testcase_06 AC 192 ms
42,972 KB
testcase_07 AC 175 ms
42,636 KB
testcase_08 AC 159 ms
42,028 KB
testcase_09 AC 156 ms
42,284 KB
testcase_10 AC 154 ms
42,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		char[] cs=sc.next().toCharArray();	
		HashSet<String> set=new HashSet<>();
		for(int s=0;s<1<<cs.length;++s) {
			int L=0,R=cs.length;
			String str="";
			for(int shift=0;shift<cs.length;++shift) {
				if((s>>shift)%2==1) {
					str+=cs[L];
					++L;
				}else {
					str+=cs[R-1];
					--R;
				}
			}
			set.add(str);
		}
		System.out.println(set.size());
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0