結果

問題 No.238 Mr. K's Another Gift
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-22 18:49:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 1,007 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 77,320 KB
実行使用メモリ 42,892 KB
最終ジャッジ日時 2024-10-02 07:39:03
合計ジャッジ時間 10,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,280 KB
testcase_01 AC 122 ms
41,572 KB
testcase_02 AC 108 ms
40,272 KB
testcase_03 AC 115 ms
41,216 KB
testcase_04 AC 143 ms
41,796 KB
testcase_05 AC 198 ms
42,396 KB
testcase_06 AC 199 ms
42,316 KB
testcase_07 AC 203 ms
42,732 KB
testcase_08 AC 207 ms
42,340 KB
testcase_09 AC 198 ms
42,600 KB
testcase_10 AC 125 ms
41,096 KB
testcase_11 AC 124 ms
41,400 KB
testcase_12 AC 127 ms
41,460 KB
testcase_13 AC 139 ms
41,264 KB
testcase_14 AC 177 ms
41,872 KB
testcase_15 AC 196 ms
42,268 KB
testcase_16 AC 198 ms
42,544 KB
testcase_17 AC 192 ms
42,588 KB
testcase_18 AC 190 ms
42,376 KB
testcase_19 AC 178 ms
42,676 KB
testcase_20 AC 123 ms
41,356 KB
testcase_21 AC 124 ms
40,980 KB
testcase_22 AC 127 ms
41,568 KB
testcase_23 AC 118 ms
40,744 KB
testcase_24 AC 140 ms
41,616 KB
testcase_25 AC 144 ms
41,240 KB
testcase_26 AC 196 ms
42,780 KB
testcase_27 AC 207 ms
42,412 KB
testcase_28 AC 196 ms
42,304 KB
testcase_29 AC 211 ms
42,892 KB
testcase_30 AC 123 ms
41,360 KB
testcase_31 AC 126 ms
41,264 KB
testcase_32 AC 130 ms
41,444 KB
testcase_33 AC 143 ms
41,424 KB
testcase_34 AC 178 ms
42,076 KB
testcase_35 AC 194 ms
42,380 KB
testcase_36 AC 190 ms
42,620 KB
testcase_37 AC 192 ms
42,520 KB
testcase_38 AC 192 ms
42,172 KB
testcase_39 AC 178 ms
42,504 KB
testcase_40 AC 117 ms
41,136 KB
testcase_41 AC 122 ms
41,232 KB
testcase_42 AC 107 ms
40,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		int a = 0;
		int b = 0;

		boolean F = true;
		for (int i=0; i<s.length()/2; i++) {
			if (s.charAt(i)!=s.charAt(s.length()-i-1)) {
				a = i;
				b = s.length()-i-1;
				F = false;;
				break;
			}
		}

		if (F==true) {
			StringBuilder sb = new StringBuilder(s);
			sb.insert(sb.length()/2,sb.charAt(sb.length()/2));
			System.out.println(sb);
		}
		else {
			StringBuilder sb1 = new StringBuilder(s);
			sb1.insert(a,s.charAt(b));
			StringBuilder sb2 = new StringBuilder(s);
			sb2.insert(b+1,s.charAt(a));
			if (IsPalindrome(sb1)) {System.out.println(sb1);}
			else if (IsPalindrome(sb2)) {System.out.println(sb2);}
			else {System.out.println("NA");}
		}
	}

	static boolean IsPalindrome (StringBuilder sb) {
		for (int i=0; i<sb.length()/2; i++) {
			if (sb.charAt(i)!=sb.charAt(sb.length()-i-1)) {
				return false;
			}
		}
		return true;
	}
}
0