結果

問題 No.238 Mr. K's Another Gift
ユーザー suiginginsuigingin
提出日時 2015-07-05 23:52:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,734 bytes
コンパイル時間 3,891 ms
コンパイル使用メモリ 79,320 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-07-08 01:05:13
合計ジャッジ時間 10,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,192 KB
testcase_01 AC 106 ms
41,088 KB
testcase_02 AC 104 ms
40,112 KB
testcase_03 AC 100 ms
39,820 KB
testcase_04 AC 113 ms
40,060 KB
testcase_05 WA -
testcase_06 AC 138 ms
41,320 KB
testcase_07 AC 135 ms
41,536 KB
testcase_08 AC 128 ms
40,808 KB
testcase_09 AC 130 ms
41,000 KB
testcase_10 AC 106 ms
40,800 KB
testcase_11 AC 100 ms
40,448 KB
testcase_12 AC 111 ms
40,932 KB
testcase_13 AC 108 ms
40,640 KB
testcase_14 AC 138 ms
41,256 KB
testcase_15 AC 133 ms
40,868 KB
testcase_16 AC 138 ms
41,540 KB
testcase_17 AC 140 ms
41,728 KB
testcase_18 AC 131 ms
41,436 KB
testcase_19 AC 127 ms
40,796 KB
testcase_20 AC 105 ms
40,900 KB
testcase_21 AC 94 ms
39,772 KB
testcase_22 AC 91 ms
39,780 KB
testcase_23 AC 108 ms
41,032 KB
testcase_24 AC 105 ms
39,924 KB
testcase_25 AC 129 ms
41,024 KB
testcase_26 AC 130 ms
40,656 KB
testcase_27 AC 147 ms
41,796 KB
testcase_28 AC 140 ms
41,568 KB
testcase_29 AC 144 ms
41,796 KB
testcase_30 AC 109 ms
40,752 KB
testcase_31 AC 105 ms
40,792 KB
testcase_32 AC 107 ms
39,848 KB
testcase_33 AC 123 ms
40,560 KB
testcase_34 AC 137 ms
41,356 KB
testcase_35 AC 124 ms
40,776 KB
testcase_36 AC 125 ms
40,868 KB
testcase_37 AC 130 ms
40,872 KB
testcase_38 AC 128 ms
40,772 KB
testcase_39 AC 117 ms
40,808 KB
testcase_40 AC 107 ms
40,832 KB
testcase_41 AC 92 ms
40,012 KB
testcase_42 AC 102 ms
40,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main_origin {
	MyScanner sc = new MyScanner();
	Scanner sc2 = new Scanner(System.in);
	final int M = 1000000000;
	int[] dx = { 1, 0, 0, -1 };
	int[] dy = { 0, 1, -1, 0 };

	void run() {
		StringBuilder s = new StringBuilder(sc.next());

		if (palindrome(s.toString())) {
			if (s.length() % 2 == 0)
				s.insert(s.length() / 2, "y");
			else
				s.insert(s.length() / 2, s.charAt(s.length() / 2));
			System.out.println(s);
			return;
		}
		int l = 0;
		int r = s.length() - 1;
		boolean add = false;
		while (l <= r) {
			if (s.charAt(l) != s.charAt(r)) {
				if (add) {
					System.out.println("NA");
					return;
				}
				if ((r - l) <= 1) {
					s.insert(r + 1, s.charAt(l));
				} else {
					if (s.charAt(l) == s.charAt(r - 1)) {
						s.insert(l, s.charAt(r));
						l++;
					} else if (s.charAt(l + 1) == s.charAt(r)) {
						s.insert(r + 1, s.charAt(l));
						r++;
					} else {
						System.out.println("NA");
						return;
					}
				}
				add = true;
			}
			l++;
			r--;
		}
		System.out.println(s);
	}

	public static void main(String[] args) {
		new Main_origin().run();
	}

	void debug(Object... o) {
		System.out.println(Arrays.deepToString(o));
	}

	void debug2(char[][] array) {
		for (int i = 0; i < array.length; i++) {
			for (int j = 0; j < array[i].length; j++) {
				System.out.print(array[i][j]);
			}
			System.out.println();
		}
	}

	boolean inner(int h, int w, int limH, int limW) {
		return 0 <= h && h < limH && 0 <= w && w < limW;
	}

	void swap(int[] x, int a, int b) {
		int tmp = x[a];
		x[a] = x[b];
		x[b] = tmp;
	}

	// find minimum i (a[i] >= border)
	int lower_bound(int a[], int border) {
		int l = -1;
		int r = a.length;
		while (r - l > 1) {
			int mid = (l + r) / 2;
			if (border <= a[mid]) {
				r = mid;
			} else {
				l = mid;
			}
		}
		// r = l + 1
		return r;
	}

	boolean palindrome(String s) {
		for (int i = 0; i < s.length() / 2; i++) {
			if (s.charAt(i) != s.charAt(s.length() - 1 - i)) {
				return false;
			}
		}
		return true;
	}

	class MyScanner {
		int nextInt() {
			try {
				int c = System.in.read();
				while (c != '-' && (c < '0' || '9' < c))
					c = System.in.read();
				if (c == '-')
					return -nextInt();
				int res = 0;
				do {
					res *= 10;
					res += c - '0';
					c = System.in.read();
				} while ('0' <= c && c <= '9');
				return res;
			} catch (Exception e) {
				return -1;
			}
		}

		double nextDouble() {
			return Double.parseDouble(next());
		}

		long nextLong() {
			return Long.parseLong(next());
		}

		String next() {
			try {
				StringBuilder res = new StringBuilder("");
				int c = System.in.read();
				while (Character.isWhitespace(c))
					c = System.in.read();
				do {
					res.append((char) c);
				} while (!Character.isWhitespace(c = System.in.read()));
				return res.toString();
			} catch (Exception e) {
				return null;
			}
		}

		int[] nextIntArray(int n) {
			int[] in = new int[n];
			for (int i = 0; i < n; i++) {
				in[i] = nextInt();
			}
			return in;
		}

		int[][] nextInt2dArray(int n, int m) {
			int[][] in = new int[n][m];
			for (int i = 0; i < n; i++) {
				in[i] = nextIntArray(m);
			}
			return in;
		}

		double[] nextDoubleArray(int n) {
			double[] in = new double[n];
			for (int i = 0; i < n; i++) {
				in[i] = nextDouble();
			}
			return in;
		}

		long[] nextLongArray(int n) {
			long[] in = new long[n];
			for (int i = 0; i < n; i++) {
				in[i] = nextLong();
			}
			return in;
		}

		char[][] nextCharField(int n, int m) {
			char[][] in = new char[n][m];
			for (int i = 0; i < n; i++) {
				String s = sc.next();
				for (int j = 0; j < m; j++) {
					in[i][j] = s.charAt(j);
				}
			}
			return in;
		}
	}
}
0