結果

問題 No.238 Mr. K's Another Gift
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-22 17:30:40
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,035 bytes
コンパイル時間 1,932 ms
コンパイル使用メモリ 79,236 KB
実行使用メモリ 46,688 KB
最終ジャッジ日時 2024-10-01 21:12:05
合計ジャッジ時間 34,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
40,212 KB
testcase_01 AC 99 ms
40,356 KB
testcase_02 AC 109 ms
40,988 KB
testcase_03 AC 125 ms
41,012 KB
testcase_04 AC 162 ms
41,372 KB
testcase_05 AC 1,002 ms
46,276 KB
testcase_06 AC 1,426 ms
45,960 KB
testcase_07 AC 1,598 ms
46,688 KB
testcase_08 AC 1,591 ms
46,168 KB
testcase_09 AC 1,657 ms
46,308 KB
testcase_10 AC 110 ms
41,148 KB
testcase_11 AC 98 ms
40,444 KB
testcase_12 AC 120 ms
41,188 KB
testcase_13 AC 132 ms
41,292 KB
testcase_14 AC 787 ms
43,628 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,077 ms
45,936 KB
testcase_18 AC 1,383 ms
46,032 KB
testcase_19 AC 1,021 ms
46,104 KB
testcase_20 AC 112 ms
40,860 KB
testcase_21 AC 111 ms
41,140 KB
testcase_22 AC 114 ms
41,144 KB
testcase_23 AC 107 ms
39,972 KB
testcase_24 AC 161 ms
41,316 KB
testcase_25 AC 172 ms
41,728 KB
testcase_26 AC 1,434 ms
45,852 KB
testcase_27 AC 1,742 ms
46,284 KB
testcase_28 AC 226 ms
46,128 KB
testcase_29 AC 1,709 ms
46,184 KB
testcase_30 AC 119 ms
40,696 KB
testcase_31 AC 101 ms
40,224 KB
testcase_32 AC 111 ms
40,360 KB
testcase_33 AC 156 ms
41,564 KB
testcase_34 AC 936 ms
45,948 KB
testcase_35 AC 1,998 ms
46,088 KB
testcase_36 AC 1,215 ms
45,844 KB
testcase_37 AC 1,568 ms
45,712 KB
testcase_38 AC 1,185 ms
45,676 KB
testcase_39 AC 1,023 ms
45,924 KB
testcase_40 AC 120 ms
40,712 KB
testcase_41 AC 108 ms
40,924 KB
testcase_42 AC 107 ms
41,284 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 {
			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