結果

問題 No.238 Mr. K's Another Gift
ユーザー tentententen
提出日時 2021-01-20 18:06:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 1,173 bytes
コンパイル時間 2,682 ms
コンパイル使用メモリ 77,560 KB
実行使用メモリ 42,372 KB
最終ジャッジ日時 2024-12-23 08:01:44
合計ジャッジ時間 12,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,972 KB
testcase_01 AC 118 ms
40,244 KB
testcase_02 AC 126 ms
41,000 KB
testcase_03 AC 132 ms
41,120 KB
testcase_04 AC 146 ms
41,300 KB
testcase_05 AC 208 ms
42,260 KB
testcase_06 AC 204 ms
42,212 KB
testcase_07 AC 202 ms
42,064 KB
testcase_08 AC 212 ms
42,048 KB
testcase_09 AC 217 ms
42,068 KB
testcase_10 AC 128 ms
41,108 KB
testcase_11 AC 128 ms
41,128 KB
testcase_12 AC 126 ms
41,096 KB
testcase_13 AC 129 ms
40,328 KB
testcase_14 AC 195 ms
41,552 KB
testcase_15 AC 203 ms
41,948 KB
testcase_16 AC 199 ms
42,064 KB
testcase_17 AC 202 ms
42,136 KB
testcase_18 AC 188 ms
41,964 KB
testcase_19 AC 198 ms
42,012 KB
testcase_20 AC 133 ms
41,064 KB
testcase_21 AC 131 ms
41,044 KB
testcase_22 AC 133 ms
40,976 KB
testcase_23 AC 138 ms
40,864 KB
testcase_24 AC 147 ms
41,216 KB
testcase_25 AC 154 ms
41,236 KB
testcase_26 AC 204 ms
42,372 KB
testcase_27 AC 211 ms
42,168 KB
testcase_28 AC 209 ms
42,328 KB
testcase_29 AC 205 ms
42,344 KB
testcase_30 AC 113 ms
40,132 KB
testcase_31 AC 130 ms
40,980 KB
testcase_32 AC 116 ms
40,140 KB
testcase_33 AC 150 ms
41,128 KB
testcase_34 AC 186 ms
41,980 KB
testcase_35 AC 202 ms
41,936 KB
testcase_36 AC 203 ms
42,048 KB
testcase_37 AC 198 ms
41,992 KB
testcase_38 AC 198 ms
41,900 KB
testcase_39 AC 196 ms
41,852 KB
testcase_40 AC 119 ms
40,156 KB
testcase_41 AC 127 ms
41,208 KB
testcase_42 AC 120 ms
40,928 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