結果

問題 No.238 Mr. K's Another Gift
ユーザー 37zigen37zigen
提出日時 2020-03-31 00:33:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,055 bytes
コンパイル時間 2,494 ms
コンパイル使用メモリ 90,800 KB
実行使用メモリ 46,400 KB
最終ジャッジ日時 2024-06-23 08:15:09
合計ジャッジ時間 13,642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
42,996 KB
testcase_01 AC 158 ms
43,004 KB
testcase_02 AC 146 ms
43,252 KB
testcase_03 AC 155 ms
43,500 KB
testcase_04 AC 181 ms
43,608 KB
testcase_05 AC 250 ms
45,816 KB
testcase_06 AC 240 ms
45,548 KB
testcase_07 AC 242 ms
46,136 KB
testcase_08 AC 239 ms
46,152 KB
testcase_09 AC 238 ms
45,356 KB
testcase_10 AC 166 ms
43,112 KB
testcase_11 AC 160 ms
43,068 KB
testcase_12 AC 161 ms
43,192 KB
testcase_13 AC 160 ms
43,612 KB
testcase_14 AC 235 ms
45,700 KB
testcase_15 AC 239 ms
45,756 KB
testcase_16 AC 263 ms
46,096 KB
testcase_17 AC 254 ms
46,056 KB
testcase_18 AC 246 ms
45,672 KB
testcase_19 AC 246 ms
45,896 KB
testcase_20 AC 146 ms
43,132 KB
testcase_21 AC 161 ms
43,516 KB
testcase_22 AC 166 ms
43,004 KB
testcase_23 AC 164 ms
43,460 KB
testcase_24 AC 184 ms
43,628 KB
testcase_25 AC 191 ms
43,452 KB
testcase_26 AC 239 ms
44,996 KB
testcase_27 AC 246 ms
45,488 KB
testcase_28 AC 238 ms
45,320 KB
testcase_29 AC 241 ms
46,400 KB
testcase_30 AC 154 ms
42,956 KB
testcase_31 AC 157 ms
43,460 KB
testcase_32 AC 151 ms
43,348 KB
testcase_33 AC 177 ms
43,296 KB
testcase_34 AC 229 ms
46,020 KB
testcase_35 AC 255 ms
45,360 KB
testcase_36 AC 244 ms
45,648 KB
testcase_37 AC 250 ms
45,464 KB
testcase_38 AC 252 ms
45,624 KB
testcase_39 AC 244 ms
45,476 KB
testcase_40 AC 152 ms
43,224 KB
testcase_41 AC 166 ms
43,192 KB
testcase_42 AC 155 ms
43,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	boolean palindrome(String str) {
		char[] cs=str.toCharArray();
		int s=0;
		int t=cs.length-1;
		boolean ret=true;
		while(s<=t) {
			ret&=cs[s++]==cs[t--];
		}
		return ret;
	}
	
	
	
	void run() {
		Scanner sc=new Scanner(System.in);
		String str=sc.next();
		char[] cs=str.toCharArray();
		int n=cs.length;
		int s=0;int t=n-1;
		while(s<t&&cs[s]==cs[t]) {
			++s;--t;
		}
		String str1=str.substring(0,n/2)+"a"+str.substring(n/2,n);
		String str2=str.substring(0,s)+str.charAt(t)+str.substring(s,n);
		String str3=str.substring(0,t+1)+str.charAt(s)+str.substring(t+1,n);
		if(palindrome(str1)) {
			System.out.println(str1);
		}else if(palindrome(str2)) {
			System.out.println(str2);
		}else if(palindrome(str3)) {
			System.out.println(str3);
		}else {
			System.out.println("NA");
		}
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0