結果

問題 No.238 Mr. K's Another Gift
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-22 17:54:58
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 940 bytes
コンパイル時間 2,292 ms
コンパイル使用メモリ 79,100 KB
実行使用メモリ 58,756 KB
最終ジャッジ日時 2024-10-01 21:33:37
合計ジャッジ時間 43,060 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,868 KB
testcase_01 AC 130 ms
54,012 KB
testcase_02 AC 131 ms
53,932 KB
testcase_03 AC 148 ms
53,772 KB
testcase_04 AC 180 ms
54,020 KB
testcase_05 AC 1,128 ms
56,660 KB
testcase_06 AC 1,719 ms
56,624 KB
testcase_07 AC 1,880 ms
56,872 KB
testcase_08 TLE -
testcase_09 AC 1,931 ms
58,756 KB
testcase_10 AC 129 ms
53,692 KB
testcase_11 AC 129 ms
53,892 KB
testcase_12 AC 132 ms
54,092 KB
testcase_13 AC 144 ms
53,876 KB
testcase_14 AC 953 ms
53,992 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,317 ms
56,600 KB
testcase_18 AC 1,691 ms
56,472 KB
testcase_19 AC 1,257 ms
56,672 KB
testcase_20 AC 130 ms
53,996 KB
testcase_21 AC 132 ms
54,016 KB
testcase_22 AC 132 ms
54,064 KB
testcase_23 AC 138 ms
54,104 KB
testcase_24 AC 185 ms
53,792 KB
testcase_25 AC 194 ms
53,948 KB
testcase_26 AC 1,897 ms
56,688 KB
testcase_27 TLE -
testcase_28 AC 244 ms
56,544 KB
testcase_29 TLE -
testcase_30 AC 130 ms
54,048 KB
testcase_31 AC 130 ms
53,760 KB
testcase_32 AC 146 ms
53,828 KB
testcase_33 AC 180 ms
54,040 KB
testcase_34 AC 1,046 ms
56,180 KB
testcase_35 TLE -
testcase_36 AC 1,450 ms
56,456 KB
testcase_37 AC 1,873 ms
56,740 KB
testcase_38 AC 1,509 ms
56,296 KB
testcase_39 AC 1,260 ms
56,968 KB
testcase_40 AC 128 ms
54,052 KB
testcase_41 AC 127 ms
53,820 KB
testcase_42 AC 130 ms
53,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		ArrayList<Character> s = split(sc.next());
		int n = s.size();
		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 ArrayList<Character> split (String s){
		ArrayList<Character> list = new ArrayList<>();
		for (int i=0; i<s.length(); i++) {
			list.add(s.charAt(i));
		}
		return list;
	}
	
	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