結果

問題 No.238 Mr. K's Another Gift
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-22 18:11:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 764 bytes
コンパイル時間 2,540 ms
コンパイル使用メモリ 79,664 KB
実行使用メモリ 57,300 KB
最終ジャッジ日時 2024-10-02 00:48:27
合計ジャッジ時間 34,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,988 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 131 ms
53,776 KB
testcase_11 AC 135 ms
54,180 KB
testcase_12 AC 137 ms
53,852 KB
testcase_13 AC 148 ms
53,832 KB
testcase_14 AC 586 ms
54,600 KB
testcase_15 AC 1,272 ms
56,656 KB
testcase_16 AC 1,265 ms
57,300 KB
testcase_17 AC 1,271 ms
56,764 KB
testcase_18 AC 1,428 ms
56,532 KB
testcase_19 AC 1,284 ms
56,620 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 232 ms
56,884 KB
testcase_29 WA -
testcase_30 AC 131 ms
54,120 KB
testcase_31 AC 134 ms
53,816 KB
testcase_32 AC 136 ms
53,796 KB
testcase_33 AC 162 ms
53,816 KB
testcase_34 AC 1,063 ms
56,708 KB
testcase_35 AC 1,289 ms
56,952 KB
testcase_36 AC 1,290 ms
56,712 KB
testcase_37 AC 1,296 ms
56,636 KB
testcase_38 AC 1,271 ms
56,708 KB
testcase_39 AC 1,274 ms
56,464 KB
testcase_40 WA -
testcase_41 AC 132 ms
54,072 KB
testcase_42 AC 133 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String str = sc.next();
		int n = str.length();
		ArrayList<Character> s = new ArrayList<>();
		for (int i=0; i<n; i++) {
			s.add(str.charAt(i));
		}
		
		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));}
			
			boolean b = true;
			for (int j=0; j<(n+1)/2; j++) {
				if (s.get(j)!=s.get(n-j-1)) {b=false; break;}
			}
			if (b==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());
		}
	}
}
0