結果

問題 No.238 Mr. K's Another Gift
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-22 18:44:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 813 bytes
コンパイル時間 2,545 ms
コンパイル使用メモリ 77,276 KB
実行使用メモリ 42,840 KB
最終ジャッジ日時 2024-10-02 07:30:07
合計ジャッジ時間 11,583 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,224 KB
testcase_01 AC 126 ms
40,956 KB
testcase_02 AC 126 ms
41,612 KB
testcase_03 AC 127 ms
41,072 KB
testcase_04 WA -
testcase_05 AC 206 ms
42,412 KB
testcase_06 WA -
testcase_07 AC 206 ms
42,840 KB
testcase_08 AC 208 ms
42,524 KB
testcase_09 AC 212 ms
42,664 KB
testcase_10 AC 126 ms
41,168 KB
testcase_11 AC 124 ms
41,180 KB
testcase_12 AC 126 ms
41,088 KB
testcase_13 AC 138 ms
41,296 KB
testcase_14 AC 191 ms
41,908 KB
testcase_15 AC 207 ms
42,184 KB
testcase_16 AC 204 ms
42,400 KB
testcase_17 AC 189 ms
42,384 KB
testcase_18 AC 192 ms
42,572 KB
testcase_19 AC 191 ms
42,364 KB
testcase_20 AC 126 ms
41,396 KB
testcase_21 AC 125 ms
40,752 KB
testcase_22 WA -
testcase_23 AC 132 ms
40,932 KB
testcase_24 AC 144 ms
41,060 KB
testcase_25 AC 146 ms
41,544 KB
testcase_26 WA -
testcase_27 AC 211 ms
42,684 KB
testcase_28 AC 214 ms
42,596 KB
testcase_29 AC 207 ms
42,304 KB
testcase_30 AC 127 ms
41,044 KB
testcase_31 AC 127 ms
41,040 KB
testcase_32 AC 128 ms
41,404 KB
testcase_33 AC 144 ms
41,304 KB
testcase_34 AC 193 ms
41,968 KB
testcase_35 AC 204 ms
42,412 KB
testcase_36 AC 202 ms
42,380 KB
testcase_37 AC 202 ms
42,396 KB
testcase_38 AC 186 ms
42,540 KB
testcase_39 AC 188 ms
42,156 KB
testcase_40 AC 126 ms
40,964 KB
testcase_41 AC 127 ms
41,312 KB
testcase_42 AC 127 ms
41,140 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;
		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;
				break;
			}
		}
		
		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