結果

問題 No.238 Mr. K's Another Gift
ユーザー htensaihtensai
提出日時 2020-05-12 16:39:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,486 bytes
コンパイル時間 2,407 ms
コンパイル使用メモリ 77,652 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-09-13 14:50:02
合計ジャッジ時間 13,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,944 KB
testcase_01 AC 127 ms
53,756 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 202 ms
54,304 KB
testcase_06 WA -
testcase_07 AC 197 ms
42,712 KB
testcase_08 AC 195 ms
42,588 KB
testcase_09 AC 208 ms
42,060 KB
testcase_10 AC 122 ms
41,204 KB
testcase_11 AC 123 ms
41,460 KB
testcase_12 AC 128 ms
41,284 KB
testcase_13 AC 145 ms
41,216 KB
testcase_14 AC 183 ms
41,992 KB
testcase_15 AC 188 ms
41,968 KB
testcase_16 AC 198 ms
42,300 KB
testcase_17 AC 189 ms
42,460 KB
testcase_18 AC 193 ms
42,364 KB
testcase_19 AC 183 ms
42,344 KB
testcase_20 AC 124 ms
41,172 KB
testcase_21 AC 125 ms
41,020 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 198 ms
42,180 KB
testcase_28 AC 207 ms
42,280 KB
testcase_29 AC 210 ms
42,528 KB
testcase_30 AC 126 ms
41,176 KB
testcase_31 AC 125 ms
41,140 KB
testcase_32 AC 122 ms
41,024 KB
testcase_33 AC 144 ms
41,372 KB
testcase_34 AC 170 ms
42,200 KB
testcase_35 AC 195 ms
42,284 KB
testcase_36 AC 191 ms
42,420 KB
testcase_37 AC 191 ms
42,152 KB
testcase_38 AC 178 ms
42,516 KB
testcase_39 AC 186 ms
42,196 KB
testcase_40 AC 124 ms
41,360 KB
testcase_41 AC 121 ms
41,072 KB
testcase_42 AC 124 ms
41,128 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;
	                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