結果

問題 No.238 Mr. K's Another Gift
ユーザー htensaihtensai
提出日時 2020-05-12 16:43:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 1,490 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 77,856 KB
実行使用メモリ 42,580 KB
最終ジャッジ日時 2024-09-13 14:54:12
合計ジャッジ時間 11,213 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,456 KB
testcase_01 AC 125 ms
41,240 KB
testcase_02 AC 125 ms
41,224 KB
testcase_03 AC 127 ms
41,588 KB
testcase_04 AC 150 ms
41,568 KB
testcase_05 AC 202 ms
42,200 KB
testcase_06 AC 205 ms
42,364 KB
testcase_07 AC 212 ms
41,928 KB
testcase_08 AC 212 ms
42,272 KB
testcase_09 AC 208 ms
42,456 KB
testcase_10 AC 112 ms
40,116 KB
testcase_11 AC 113 ms
40,152 KB
testcase_12 AC 128 ms
41,552 KB
testcase_13 AC 138 ms
41,728 KB
testcase_14 AC 183 ms
41,680 KB
testcase_15 AC 183 ms
42,104 KB
testcase_16 AC 194 ms
42,284 KB
testcase_17 AC 197 ms
42,284 KB
testcase_18 AC 189 ms
42,040 KB
testcase_19 AC 196 ms
42,240 KB
testcase_20 AC 129 ms
41,248 KB
testcase_21 AC 127 ms
41,516 KB
testcase_22 AC 126 ms
41,148 KB
testcase_23 AC 129 ms
41,376 KB
testcase_24 AC 128 ms
41,188 KB
testcase_25 AC 149 ms
41,460 KB
testcase_26 AC 209 ms
42,492 KB
testcase_27 AC 214 ms
42,436 KB
testcase_28 AC 214 ms
42,272 KB
testcase_29 AC 217 ms
42,440 KB
testcase_30 AC 130 ms
41,332 KB
testcase_31 AC 124 ms
41,388 KB
testcase_32 AC 130 ms
41,460 KB
testcase_33 AC 144 ms
41,464 KB
testcase_34 AC 193 ms
41,948 KB
testcase_35 AC 195 ms
42,028 KB
testcase_36 AC 197 ms
42,580 KB
testcase_37 AC 197 ms
42,284 KB
testcase_38 AC 200 ms
42,164 KB
testcase_39 AC 181 ms
42,356 KB
testcase_40 AC 127 ms
41,040 KB
testcase_41 AC 128 ms
41,332 KB
testcase_42 AC 125 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder(sc.next());
		int length = sb.length();
		boolean result;
		if (length % 2 == 0) {
		    result = (getResult(sb, length / 2 - 1, length / 2 - 1, true) || getResult(sb, length / 2, length / 2, false));
		} else {
		    result = (getResult(sb, length / 2 - 1, length / 2, true) || getResult(sb, length / 2, length / 2 + 1, false));
		}
		if (result) {
		    System.out.println(sb);
		} else {
		    System.out.println("NA");
		}
	}
	
	static boolean getResult(StringBuilder sb, int left, int right, boolean isLeft) {
	    int idx = -1;
	    char ch = (char)0;
	    while (left >= 0 && right < sb.length()) {
	        if (sb.charAt(left) != sb.charAt(right)) {
	            if (idx >= 0) {
	                return false;
	            }
	            if (isLeft) {
	                idx = left + 1;
	                ch = sb.charAt(right);
	                right++;
	            } else {
	                idx = right;
	                ch = sb.charAt(left);
	                left--;
	            }
	        } else {
	            left--;
	            right++;
	        }
	    }
	    if (idx < 0) {
	        if (isLeft) {
	            idx = 0;
	            ch = sb.charAt(sb.length() - 1);
	        } else {
	            idx = sb.length();
	            ch = sb.charAt(0);
	        }
	    }
	    sb.insert(idx, ch);
	    return true;
	}
}
0