結果

問題 No.52 よくある文字列の問題
ユーザー htensaihtensai
提出日時 2019-12-06 21:05:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 718 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 55,484 KB
最終ジャッジ日時 2024-06-06 07:24:40
合計ジャッジ時間 5,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
54,884 KB
testcase_01 AC 155 ms
55,128 KB
testcase_02 AC 179 ms
55,440 KB
testcase_03 AC 154 ms
55,212 KB
testcase_04 AC 170 ms
55,164 KB
testcase_05 AC 171 ms
55,340 KB
testcase_06 AC 181 ms
55,344 KB
testcase_07 AC 170 ms
55,484 KB
testcase_08 AC 167 ms
55,072 KB
testcase_09 AC 153 ms
54,844 KB
testcase_10 AC 155 ms
54,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static HashSet<String> set = new HashSet<>();
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		search(arr, "", 0, arr.length, true);
		search(arr, "", -1, arr.length - 1, false);
		System.out.println(set.size());
   }
   
   static void search(char[] arr, String str, int left, int right, boolean isLeft) {
       if (left == right) {
           set.add(str);
           return;
       }
       if (isLeft) {
           str += arr[left];
       } else {
           str += arr[right];
       }
       search(arr, str, left + 1, right, true);
       search(arr, str, left, right - 1, false);
   }
}

0