結果

問題 No.238 Mr. K's Another Gift
ユーザー tentententen
提出日時 2021-01-20 18:06:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,173 bytes
コンパイル時間 1,976 ms
コンパイル使用メモリ 77,020 KB
実行使用メモリ 42,504 KB
最終ジャッジ日時 2024-06-02 11:07:04
合計ジャッジ時間 10,549 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
39,908 KB
testcase_01 AC 93 ms
39,628 KB
testcase_02 AC 94 ms
39,332 KB
testcase_03 AC 117 ms
40,940 KB
testcase_04 AC 125 ms
41,180 KB
testcase_05 AC 165 ms
42,016 KB
testcase_06 AC 173 ms
42,384 KB
testcase_07 AC 176 ms
42,092 KB
testcase_08 AC 184 ms
42,284 KB
testcase_09 AC 185 ms
42,076 KB
testcase_10 AC 109 ms
40,992 KB
testcase_11 AC 111 ms
40,640 KB
testcase_12 AC 98 ms
40,128 KB
testcase_13 AC 110 ms
40,556 KB
testcase_14 AC 161 ms
41,732 KB
testcase_15 AC 173 ms
42,052 KB
testcase_16 AC 163 ms
42,136 KB
testcase_17 AC 159 ms
42,100 KB
testcase_18 AC 167 ms
41,612 KB
testcase_19 AC 168 ms
42,012 KB
testcase_20 AC 113 ms
41,344 KB
testcase_21 AC 94 ms
39,912 KB
testcase_22 AC 105 ms
41,008 KB
testcase_23 AC 98 ms
39,892 KB
testcase_24 AC 135 ms
41,344 KB
testcase_25 AC 128 ms
41,228 KB
testcase_26 AC 187 ms
41,972 KB
testcase_27 AC 186 ms
42,032 KB
testcase_28 AC 172 ms
42,504 KB
testcase_29 AC 178 ms
42,364 KB
testcase_30 AC 98 ms
39,728 KB
testcase_31 AC 102 ms
40,100 KB
testcase_32 AC 100 ms
40,020 KB
testcase_33 AC 132 ms
40,996 KB
testcase_34 AC 163 ms
41,792 KB
testcase_35 AC 178 ms
42,260 KB
testcase_36 AC 159 ms
42,212 KB
testcase_37 AC 177 ms
41,904 KB
testcase_38 AC 175 ms
42,212 KB
testcase_39 AC 171 ms
42,144 KB
testcase_40 AC 108 ms
40,856 KB
testcase_41 AC 106 ms
41,040 KB
testcase_42 AC 98 ms
40,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int left = 0;
		int right = s.length() - 1;
		int idx = -1;
		char c = ' ';
		while (left <= right) {
		    if (s.charAt(left) == s.charAt(right)) {
		        left++;
		        right--;
		        continue;
		    }
		    if (s.charAt(left + 1) == s.charAt(right)) {
		        if (idx >= 0) {
		            System.out.println("NA");
		            return;
		        }
		        idx = right + 1;
		        c = s.charAt(left);
		        left++;
		    } else if (s.charAt(left) == s.charAt(right - 1)) {
		        if (idx >= 0) {
		            System.out.println("NA");
		            return;
		        }
		        idx = left;
		        c = s.charAt(right);
		        right--;
		    } else {
		        System.out.println("NA");
		        return;
		    }
		}
		if (idx < 0) {
		    if (s.length() % 2 == 0) {
		        idx = s.length() / 2;
		        c = 'a';
		    } else {
		        idx = s.length() / 2;
		        c = s.charAt(idx);
		    }
		}
		s = new StringBuilder(s).insert(idx, c).toString();
		System.out.println(s);
	}
}
0