結果
問題 | No.238 Mr. K's Another Gift |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-22 18:52:13 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 213 ms / 2,000 ms |
コード長 | 990 bytes |
コンパイル時間 | 2,755 ms |
コンパイル使用メモリ | 77,412 KB |
実行使用メモリ | 42,716 KB |
最終ジャッジ日時 | 2024-10-02 07:45:14 |
合計ジャッジ時間 | 11,311 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
41,072 KB |
testcase_01 | AC | 124 ms
41,208 KB |
testcase_02 | AC | 124 ms
41,532 KB |
testcase_03 | AC | 128 ms
41,128 KB |
testcase_04 | AC | 124 ms
41,656 KB |
testcase_05 | AC | 200 ms
42,408 KB |
testcase_06 | AC | 199 ms
42,292 KB |
testcase_07 | AC | 204 ms
42,672 KB |
testcase_08 | AC | 206 ms
42,716 KB |
testcase_09 | AC | 202 ms
42,684 KB |
testcase_10 | AC | 121 ms
41,036 KB |
testcase_11 | AC | 127 ms
41,228 KB |
testcase_12 | AC | 112 ms
40,992 KB |
testcase_13 | AC | 135 ms
41,284 KB |
testcase_14 | AC | 185 ms
41,784 KB |
testcase_15 | AC | 190 ms
42,240 KB |
testcase_16 | AC | 207 ms
42,436 KB |
testcase_17 | AC | 187 ms
42,268 KB |
testcase_18 | AC | 193 ms
42,208 KB |
testcase_19 | AC | 184 ms
42,392 KB |
testcase_20 | AC | 125 ms
41,240 KB |
testcase_21 | AC | 127 ms
41,300 KB |
testcase_22 | AC | 126 ms
41,144 KB |
testcase_23 | AC | 129 ms
41,424 KB |
testcase_24 | AC | 142 ms
41,236 KB |
testcase_25 | AC | 142 ms
41,704 KB |
testcase_26 | AC | 201 ms
42,336 KB |
testcase_27 | AC | 213 ms
42,380 KB |
testcase_28 | AC | 197 ms
42,540 KB |
testcase_29 | AC | 207 ms
42,212 KB |
testcase_30 | AC | 123 ms
41,412 KB |
testcase_31 | AC | 125 ms
41,288 KB |
testcase_32 | AC | 127 ms
41,344 KB |
testcase_33 | AC | 141 ms
41,164 KB |
testcase_34 | AC | 181 ms
42,200 KB |
testcase_35 | AC | 200 ms
42,280 KB |
testcase_36 | AC | 188 ms
42,240 KB |
testcase_37 | AC | 190 ms
42,428 KB |
testcase_38 | AC | 187 ms
42,224 KB |
testcase_39 | AC | 188 ms
42,124 KB |
testcase_40 | AC | 126 ms
41,224 KB |
testcase_41 | AC | 124 ms
41,132 KB |
testcase_42 | AC | 126 ms
41,532 KB |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { String s = sc.next(); int a = 0; int b = 0; int n = s.length(); boolean F = true; for (int i=0; i<n/2; i++) { if (s.charAt(i)!=s.charAt(n-i-1)) { a = i; b = n-i-1; F = false;; break; } } if (F==true) { StringBuilder sb = new StringBuilder(s); sb.insert(n/2,sb.charAt(n/2)); System.out.println(sb); } else { StringBuilder sb1 = new StringBuilder(s); sb1.insert(a,s.charAt(b)); StringBuilder sb2 = new StringBuilder(s); sb2.insert(b+1,s.charAt(a)); if (IsPalindrome(sb1)) {System.out.println(sb1);} else if (IsPalindrome(sb2)) {System.out.println(sb2);} else {System.out.println("NA");} } } static boolean IsPalindrome (StringBuilder sb) { int n = sb.length(); for (int i=0; i<n/2; i++) { if (sb.charAt(i)!=sb.charAt(n-i-1)) { return false; } } return true; } }