結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,068 KB
testcase_01 AC 119 ms
41,076 KB
testcase_02 AC 108 ms
41,248 KB
testcase_03 AC 141 ms
41,420 KB
testcase_04 AC 178 ms
41,964 KB
testcase_05 AC 1,005 ms
44,476 KB
testcase_06 AC 1,579 ms
46,108 KB
testcase_07 AC 1,794 ms
43,776 KB
testcase_08 AC 1,969 ms
56,788 KB
testcase_09 AC 1,791 ms
46,048 KB
testcase_10 AC 100 ms
39,904 KB
testcase_11 AC 114 ms
40,988 KB
testcase_12 AC 121 ms
40,932 KB
testcase_13 AC 137 ms
41,144 KB
testcase_14 AC 951 ms
42,860 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,063 ms
43,532 KB
testcase_18 AC 1,397 ms
43,720 KB
testcase_19 AC 1,110 ms
43,380 KB
testcase_20 AC 128 ms
40,976 KB
testcase_21 AC 124 ms
41,080 KB
testcase_22 AC 128 ms
41,200 KB
testcase_23 AC 134 ms
41,268 KB
testcase_24 AC 186 ms
41,684 KB
testcase_25 AC 185 ms
42,204 KB
testcase_26 AC 1,808 ms
46,188 KB
testcase_27 AC 1,924 ms
44,160 KB
testcase_28 AC 234 ms
46,200 KB
testcase_29 TLE -
testcase_30 AC 122 ms
41,156 KB
testcase_31 AC 125 ms
41,404 KB
testcase_32 AC 138 ms
41,276 KB
testcase_33 AC 173 ms
41,384 KB
testcase_34 AC 966 ms
43,620 KB
testcase_35 TLE -
testcase_36 AC 1,365 ms
43,572 KB
testcase_37 AC 1,761 ms
43,412 KB
testcase_38 AC 1,222 ms
43,580 KB
testcase_39 AC 1,011 ms
43,848 KB
testcase_40 AC 108 ms
39,860 KB
testcase_41 AC 114 ms
41,276 KB
testcase_42 AC 114 ms
41,052 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 (int i=0; i<n+1; i++) {
				ans.append(s.get(i));
			}
			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