結果
問題 | No.52 よくある文字列の問題 |
ユーザー | spacia |
提出日時 | 2016-01-14 23:02:00 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 191 ms / 5,000 ms |
コード長 | 688 bytes |
コンパイル時間 | 2,168 ms |
コンパイル使用メモリ | 77,044 KB |
実行使用メモリ | 55,428 KB |
最終ジャッジ日時 | 2024-09-22 05:24:24 |
合計ジャッジ時間 | 4,690 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 156 ms
54,896 KB |
testcase_01 | AC | 153 ms
55,060 KB |
testcase_02 | AC | 178 ms
55,284 KB |
testcase_03 | AC | 154 ms
55,060 KB |
testcase_04 | AC | 184 ms
55,428 KB |
testcase_05 | AC | 172 ms
55,196 KB |
testcase_06 | AC | 191 ms
55,268 KB |
testcase_07 | AC | 180 ms
55,296 KB |
testcase_08 | AC | 161 ms
54,728 KB |
testcase_09 | AC | 156 ms
54,972 KB |
testcase_10 | AC | 154 ms
55,104 KB |
ソースコード
import java.io.*; import java.util.*; class Main { static String s; static ArrayList<String> list = new ArrayList<String>(); public static void out (Object o) { System.out.println(o); } public static void solve (String str , int h , int t , int cnt) { if (cnt == s.length()) { if (!list.contains(str)) list.add(str); return; } if (h < s.length()) solve(str + (s.charAt(h) + "") , h + 1 , t , cnt + 1); if (t > 0) solve(str + (s.charAt(t) + "") , h , t - 1 , cnt + 1); } public static void main (String[] args) throws IOException { Scanner sc = new Scanner(System.in); s = sc.nextLine(); solve("", 0, s.length() - 1, 0); out(list.size()); } }