結果

問題 No.238 Mr. K's Another Gift
ユーザー ぴろずぴろず
提出日時 2015-07-05 22:54:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 1,229 bytes
コンパイル時間 2,644 ms
コンパイル使用メモリ 79,696 KB
実行使用メモリ 56,952 KB
最終ジャッジ日時 2024-07-07 23:34:08
合計ジャッジ時間 10,124 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
53,936 KB
testcase_01 AC 98 ms
52,868 KB
testcase_02 AC 106 ms
53,716 KB
testcase_03 AC 117 ms
54,096 KB
testcase_04 AC 137 ms
54,236 KB
testcase_05 AC 203 ms
56,952 KB
testcase_06 AC 205 ms
43,648 KB
testcase_07 AC 218 ms
45,452 KB
testcase_08 AC 227 ms
45,912 KB
testcase_09 AC 219 ms
45,448 KB
testcase_10 AC 99 ms
41,252 KB
testcase_11 AC 107 ms
41,564 KB
testcase_12 AC 108 ms
41,504 KB
testcase_13 AC 114 ms
41,324 KB
testcase_14 AC 178 ms
43,584 KB
testcase_15 AC 181 ms
44,316 KB
testcase_16 AC 183 ms
44,368 KB
testcase_17 AC 170 ms
44,044 KB
testcase_18 AC 182 ms
44,128 KB
testcase_19 AC 179 ms
43,948 KB
testcase_20 AC 98 ms
41,264 KB
testcase_21 AC 109 ms
41,316 KB
testcase_22 AC 99 ms
41,240 KB
testcase_23 AC 116 ms
41,228 KB
testcase_24 AC 120 ms
41,356 KB
testcase_25 AC 146 ms
41,972 KB
testcase_26 AC 212 ms
44,104 KB
testcase_27 AC 226 ms
45,776 KB
testcase_28 AC 216 ms
44,564 KB
testcase_29 AC 231 ms
46,340 KB
testcase_30 AC 99 ms
41,200 KB
testcase_31 AC 100 ms
41,324 KB
testcase_32 AC 112 ms
41,380 KB
testcase_33 AC 113 ms
41,480 KB
testcase_34 AC 174 ms
44,296 KB
testcase_35 AC 182 ms
44,568 KB
testcase_36 AC 195 ms
44,508 KB
testcase_37 AC 182 ms
43,920 KB
testcase_38 AC 182 ms
44,656 KB
testcase_39 AC 191 ms
44,524 KB
testcase_40 AC 113 ms
41,184 KB
testcase_41 AC 114 ms
41,416 KB
testcase_42 AC 113 ms
41,044 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.get(n/2));
			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