結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,940 KB
testcase_01 AC 131 ms
54,004 KB
testcase_02 AC 131 ms
54,312 KB
testcase_03 AC 146 ms
53,896 KB
testcase_04 AC 181 ms
53,980 KB
testcase_05 AC 1,145 ms
56,652 KB
testcase_06 AC 1,693 ms
56,548 KB
testcase_07 AC 1,971 ms
56,684 KB
testcase_08 AC 1,882 ms
56,540 KB
testcase_09 TLE -
testcase_10 AC 135 ms
53,944 KB
testcase_11 AC 131 ms
54,072 KB
testcase_12 AC 131 ms
53,960 KB
testcase_13 AC 147 ms
54,608 KB
testcase_14 AC 875 ms
54,460 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,309 ms
56,648 KB
testcase_18 AC 1,597 ms
56,572 KB
testcase_19 AC 1,269 ms
56,784 KB
testcase_20 AC 129 ms
54,316 KB
testcase_21 AC 132 ms
54,128 KB
testcase_22 AC 132 ms
53,892 KB
testcase_23 AC 143 ms
54,032 KB
testcase_24 AC 175 ms
54,084 KB
testcase_25 AC 178 ms
53,444 KB
testcase_26 AC 1,687 ms
56,512 KB
testcase_27 TLE -
testcase_28 AC 247 ms
56,672 KB
testcase_29 TLE -
testcase_30 AC 131 ms
53,928 KB
testcase_31 AC 132 ms
53,884 KB
testcase_32 AC 144 ms
54,100 KB
testcase_33 AC 183 ms
54,164 KB
testcase_34 AC 1,061 ms
56,380 KB
testcase_35 TLE -
testcase_36 AC 1,488 ms
56,692 KB
testcase_37 AC 1,961 ms
56,576 KB
testcase_38 AC 1,444 ms
56,616 KB
testcase_39 AC 1,272 ms
56,400 KB
testcase_40 AC 130 ms
54,052 KB
testcase_41 AC 129 ms
54,156 KB
testcase_42 AC 132 ms
54,024 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());
		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 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