結果

問題 No.238 Mr. K's Another Gift
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-22 18:07:09
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 848 bytes
コンパイル時間 2,481 ms
コンパイル使用メモリ 79,840 KB
実行使用メモリ 56,892 KB
最終ジャッジ日時 2024-10-02 00:21:23
合計ジャッジ時間 38,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,124 KB
testcase_01 AC 132 ms
53,792 KB
testcase_02 AC 126 ms
53,812 KB
testcase_03 AC 138 ms
53,828 KB
testcase_04 AC 182 ms
54,248 KB
testcase_05 AC 1,018 ms
56,548 KB
testcase_06 AC 1,712 ms
56,704 KB
testcase_07 AC 1,763 ms
56,432 KB
testcase_08 AC 1,781 ms
56,512 KB
testcase_09 AC 1,937 ms
56,436 KB
testcase_10 AC 130 ms
53,692 KB
testcase_11 AC 128 ms
53,512 KB
testcase_12 AC 125 ms
53,952 KB
testcase_13 AC 140 ms
53,792 KB
testcase_14 AC 859 ms
54,636 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,155 ms
56,580 KB
testcase_18 AC 1,445 ms
56,712 KB
testcase_19 AC 1,099 ms
56,588 KB
testcase_20 AC 122 ms
53,904 KB
testcase_21 AC 118 ms
53,884 KB
testcase_22 AC 120 ms
53,816 KB
testcase_23 AC 126 ms
54,048 KB
testcase_24 AC 182 ms
53,888 KB
testcase_25 AC 194 ms
54,156 KB
testcase_26 AC 1,765 ms
56,688 KB
testcase_27 TLE -
testcase_28 AC 221 ms
56,464 KB
testcase_29 AC 1,977 ms
56,360 KB
testcase_30 AC 119 ms
53,628 KB
testcase_31 AC 118 ms
53,972 KB
testcase_32 AC 140 ms
53,760 KB
testcase_33 AC 159 ms
53,812 KB
testcase_34 AC 921 ms
56,852 KB
testcase_35 TLE -
testcase_36 AC 1,309 ms
56,580 KB
testcase_37 AC 1,747 ms
56,628 KB
testcase_38 AC 1,285 ms
56,680 KB
testcase_39 AC 1,099 ms
56,316 KB
testcase_40 AC 118 ms
53,648 KB
testcase_41 AC 119 ms
53,960 KB
testcase_42 AC 118 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String str = sc.next();
		int n = str.length();
		ArrayList<Character> s = new ArrayList<>();
		for (int i=0; i<n; i++) {
			s.add(str.charAt(i));
		}
		
		boolean F = false;
		
		for (int i=0; i<=n; i++) {
			if (i<=n/2) {s.add(i,s.get(n-i-1));}
			else {s.add(i,s.get(n-i));}
			if (IsPalindrome(s)==true) {F=true; break;}
			s.remove(i);
		}
		
		if (F==false) {System.out.println("NA");}
		else {
			StringBuilder ans = new StringBuilder();
			for (char c : s) {ans.append(c);}
			System.out.println(ans.toString());
		}
	}
	
	static boolean IsPalindrome (ArrayList<Character> list) {
		int n = list.size();
		for (int i=0; i<n/2; i++) {
			if (list.get(i)!=list.get(n-i-1)) {return false;}
		}
		return true;
	}
}
0