結果

問題 No.238 Mr. K's Another Gift
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-22 17:27:31
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 937 bytes
コンパイル時間 2,405 ms
コンパイル使用メモリ 83,140 KB
実行使用メモリ 64,944 KB
最終ジャッジ日時 2024-10-01 21:11:05
合計ジャッジ時間 43,518 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,120 KB
testcase_01 AC 128 ms
54,192 KB
testcase_02 AC 131 ms
54,108 KB
testcase_03 AC 186 ms
54,660 KB
testcase_04 AC 285 ms
58,408 KB
testcase_05 AC 1,435 ms
64,796 KB
testcase_06 AC 1,948 ms
64,936 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 122 ms
54,140 KB
testcase_11 AC 123 ms
54,140 KB
testcase_12 AC 122 ms
53,956 KB
testcase_13 AC 150 ms
54,020 KB
testcase_14 AC 916 ms
56,740 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,259 ms
57,048 KB
testcase_18 AC 1,544 ms
57,356 KB
testcase_19 AC 1,181 ms
57,056 KB
testcase_20 AC 127 ms
54,284 KB
testcase_21 AC 126 ms
54,176 KB
testcase_22 AC 117 ms
53,040 KB
testcase_23 AC 164 ms
54,512 KB
testcase_24 AC 262 ms
55,964 KB
testcase_25 AC 325 ms
63,220 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 669 ms
64,632 KB
testcase_29 TLE -
testcase_30 AC 125 ms
54,120 KB
testcase_31 AC 127 ms
54,012 KB
testcase_32 AC 140 ms
53,948 KB
testcase_33 AC 179 ms
54,012 KB
testcase_34 AC 1,043 ms
57,748 KB
testcase_35 TLE -
testcase_36 AC 1,364 ms
57,360 KB
testcase_37 AC 1,816 ms
57,324 KB
testcase_38 AC 1,365 ms
57,728 KB
testcase_39 AC 1,174 ms
57,080 KB
testcase_40 AC 131 ms
54,188 KB
testcase_41 AC 130 ms
54,032 KB
testcase_42 AC 123 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		List<Character> s = split(sc.next());
		
		List<Character> key = new ArrayList<>();
		for (int i=0; i<s.size(); i++) {
			key.add(s.get(s.size()-i-1));
		}
		key.add(key.size()/2,key.get(key.size()/2));
		
		boolean F = false;
		for (int i=0; i<key.size(); i++) {
			s.add(i,key.get(i));
			if (IsPalindrome(s)==true) {F=true; break;}
			s.remove(i);
		}
		
		if (F==false) {System.out.println("NA");}
		else {s.forEach(x->System.out.print(x));}
	}
	
	static List<Character> split (String s){
		List<Character> list = new ArrayList<>();
		for (int i=0; i<s.length(); i++) {
			list.add(s.charAt(i));
		}
		return list;
	}
	
	static boolean IsPalindrome (List<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