結果

問題 No.52 よくある文字列の問題
ユーザー リチウムリチウム
提出日時 2014-10-28 23:55:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 603 bytes
コンパイル時間 2,820 ms
コンパイル使用メモリ 78,488 KB
実行使用メモリ 54,556 KB
最終ジャッジ日時 2024-09-22 05:16:57
合計ジャッジ時間 5,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,280 KB
testcase_01 AC 123 ms
54,084 KB
testcase_02 AC 154 ms
54,280 KB
testcase_03 AC 126 ms
54,304 KB
testcase_04 AC 164 ms
54,276 KB
testcase_05 AC 153 ms
54,368 KB
testcase_06 AC 161 ms
54,288 KB
testcase_07 AC 141 ms
54,556 KB
testcase_08 AC 132 ms
54,060 KB
testcase_09 AC 128 ms
54,304 KB
testcase_10 AC 128 ms
53,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		String S=sc.next();
		String c=new String(S);
		char s[]=S.toCharArray();
		int n=s.length;
		ArrayList <String>ans=new ArrayList<>();
		for(int i=0;i<(1<<n);i++){
			int x=0;
			int y=n-1;
			String a="";
			for(int j=0;j<n;j++){
				if((i>>j)%2==0){
					a+=S.substring(x,x+1);
					x++;
				}
				else {
					a+=S.substring(y,y+1);
					y--;
				}
				
			}
			if(!ans.contains(a)){
				ans.add(a);
			}
		}
		System.out.println(ans.size());
	}}
0