結果

問題 No.238 Mr. K's Another Gift
ユーザー ぴろずぴろず
提出日時 2015-07-05 22:53:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,222 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 79,488 KB
実行使用メモリ 46,508 KB
最終ジャッジ日時 2024-07-07 23:33:16
合計ジャッジ時間 9,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
39,308 KB
testcase_01 AC 88 ms
40,312 KB
testcase_02 AC 96 ms
41,040 KB
testcase_03 AC 94 ms
40,304 KB
testcase_04 WA -
testcase_05 AC 202 ms
44,972 KB
testcase_06 WA -
testcase_07 AC 210 ms
45,820 KB
testcase_08 AC 210 ms
46,064 KB
testcase_09 AC 208 ms
45,564 KB
testcase_10 AC 98 ms
40,720 KB
testcase_11 AC 84 ms
39,664 KB
testcase_12 AC 101 ms
40,912 KB
testcase_13 AC 107 ms
41,004 KB
testcase_14 AC 169 ms
43,020 KB
testcase_15 AC 177 ms
44,848 KB
testcase_16 AC 174 ms
44,300 KB
testcase_17 AC 168 ms
44,292 KB
testcase_18 AC 176 ms
44,336 KB
testcase_19 AC 171 ms
44,832 KB
testcase_20 AC 87 ms
39,732 KB
testcase_21 AC 89 ms
40,092 KB
testcase_22 AC 101 ms
40,876 KB
testcase_23 AC 106 ms
40,652 KB
testcase_24 AC 115 ms
40,380 KB
testcase_25 AC 115 ms
40,752 KB
testcase_26 AC 193 ms
43,776 KB
testcase_27 AC 215 ms
46,508 KB
testcase_28 AC 199 ms
44,132 KB
testcase_29 AC 210 ms
46,280 KB
testcase_30 AC 97 ms
40,900 KB
testcase_31 AC 99 ms
41,220 KB
testcase_32 AC 102 ms
40,900 KB
testcase_33 AC 123 ms
41,472 KB
testcase_34 AC 166 ms
44,732 KB
testcase_35 AC 189 ms
44,956 KB
testcase_36 AC 170 ms
44,540 KB
testcase_37 AC 179 ms
44,404 KB
testcase_38 AC 161 ms
44,136 KB
testcase_39 AC 168 ms
44,072 KB
testcase_40 AC 98 ms
40,688 KB
testcase_41 AC 99 ms
40,940 KB
testcase_42 AC 109 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no238;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		ArrayList<Character> ans = solve(s);
		if (ans == null) {
			System.out.println("NA");
		}else{
			StringBuilder sb = new StringBuilder();
			for(char c:ans) {
				sb.append(c);
			}
			System.out.println(sb.toString());
		}
	}

	public static ArrayList<Character> solve(String s) {
		int n = s.length();
		ArrayList<Character> a = new ArrayList<>();
		for(int i=0;i<n;i++) {
			a.add(s.charAt(i));
		}
		if (isKaibun(a)) {
			a.add(n/2, 'a');
			return a;
		}
		ArrayList<Character> b = new ArrayList<>(a);
		Collections.reverse(b);
		for(int i=0;i<n;i++) {
			char c1 = a.get(i);
			char c2 = b.get(i);
			if (c1 != c2) {
				a.add(i,c2);
				if (isKaibun(a)) {
					return a;
				}
				b.add(i,c1);
				if (isKaibun(b)) {
					return b;
				}
				return null;
			}
		}
		return null; //unreachable
	}

	public static boolean isKaibun(ArrayList<Character> a) {
		int n = a.size();
		for(int i=0;i<n/2;i++) {
			if (a.get(i) != a.get(n-1-i)) {
				return false;
			}
		}
		return true;
	}

}
0