結果

問題 No.2234 palindromer
ユーザー tentententen
提出日時 2024-07-30 17:48:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 1,729 bytes
コンパイル時間 2,343 ms
コンパイル使用メモリ 78,496 KB
実行使用メモリ 50,508 KB
最終ジャッジ日時 2024-07-30 17:48:59
合計ジャッジ時間 4,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,264 KB
testcase_01 AC 50 ms
50,500 KB
testcase_02 AC 51 ms
50,252 KB
testcase_03 AC 49 ms
50,120 KB
testcase_04 AC 49 ms
50,008 KB
testcase_05 AC 48 ms
50,272 KB
testcase_06 AC 49 ms
50,328 KB
testcase_07 AC 47 ms
50,280 KB
testcase_08 AC 48 ms
50,388 KB
testcase_09 AC 48 ms
50,276 KB
testcase_10 AC 49 ms
50,464 KB
testcase_11 AC 49 ms
50,220 KB
testcase_12 AC 51 ms
50,508 KB
testcase_13 AC 49 ms
50,248 KB
testcase_14 AC 50 ms
50,456 KB
testcase_15 AC 50 ms
50,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] inputs = sc.next().toCharArray();
        for (int i = 0; i < inputs.length; i++) {
            boolean enable = true;
            char[] ans = new char[inputs.length + i];
            int left = 0;
            int right = inputs.length - 1 + i;
            while (left <= right && enable) {
                enable = right >= inputs.length || inputs[left] == inputs[right];
                ans[left] = inputs[left];
                ans[right] = inputs[left];
                left++;
                right--;
            }
            if (enable) {
                System.out.println(ans);
                return;
            }
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0