結果

問題 No.2234 palindromer
ユーザー AsahiAsahi
提出日時 2023-03-03 22:22:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 2,633 ms
コンパイル使用メモリ 75,800 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-09-17 23:24:41
合計ジャッジ時間 4,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
54,172 KB
testcase_01 AC 97 ms
52,872 KB
testcase_02 AC 109 ms
53,920 KB
testcase_03 AC 134 ms
53,820 KB
testcase_04 AC 96 ms
52,784 KB
testcase_05 AC 98 ms
53,004 KB
testcase_06 AC 107 ms
53,852 KB
testcase_07 AC 104 ms
53,780 KB
testcase_08 AC 108 ms
54,064 KB
testcase_09 AC 118 ms
54,012 KB
testcase_10 AC 97 ms
52,924 KB
testcase_11 AC 107 ms
53,992 KB
testcase_12 AC 106 ms
53,928 KB
testcase_13 AC 94 ms
53,156 KB
testcase_14 AC 90 ms
52,576 KB
testcase_15 AC 95 ms
52,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String A = sc.next();
        StringBuilder sb = new StringBuilder(A);
        sb.reverse();
        String revA = sb.toString();
        int n = A.length();
        for (int i = 0; i < n; i++) {
            String subA = A.substring(i);
            String subRevA = revA.substring(0, n - i);
            if (subA.equals(subRevA)) {
                System.out.println(A + revA.substring(n - i));
                break;
            }
        }
        sc.close();
    }
}
0