結果

問題 No.52 よくある文字列の問題
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-24 17:54:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 1,029 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 80,364 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-09-22 05:38:36
合計ジャッジ時間 4,348 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,008 KB
testcase_01 AC 126 ms
54,164 KB
testcase_02 AC 137 ms
54,320 KB
testcase_03 AC 126 ms
54,216 KB
testcase_04 AC 134 ms
54,184 KB
testcase_05 AC 134 ms
54,236 KB
testcase_06 AC 136 ms
54,140 KB
testcase_07 AC 131 ms
54,080 KB
testcase_08 AC 131 ms
54,016 KB
testcase_09 AC 125 ms
53,988 KB
testcase_10 AC 124 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        String s = stdin.nextLine();
        
        Deque<String> q1 = new ArrayDeque<>();
        Deque<String> q2 = new ArrayDeque<>();
        Set<String> set = new HashSet<>();
        
        q1.add(s);
        q2.add("");
        
        while (!q1.isEmpty()) {
            String s1 = q1.pollFirst(); // 残り
            String s2 = q2.pollFirst(); // 完成した文字列
            
            if (s1.isEmpty()) {
                set.add(s2);
            } else {
                q1.add(s1.substring(1));
                q2.add(s2 + s1.substring(0, 1));
                
                q1.add(s1.substring(0, s1.length() - 1));
                q2.add(s2 + s1.substring(s1.length() - 1));
            }
        }
        
        System.out.println(set.size());
    }
}
0