結果

問題 No.273 回文分解
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-15 20:59:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 835 bytes
コンパイル時間 3,925 ms
コンパイル使用メモリ 81,564 KB
実行使用メモリ 54,452 KB
最終ジャッジ日時 2024-06-25 13:37:39
合計ジャッジ時間 9,296 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,996 KB
testcase_01 AC 131 ms
54,204 KB
testcase_02 AC 130 ms
54,076 KB
testcase_03 AC 131 ms
54,244 KB
testcase_04 AC 131 ms
54,032 KB
testcase_05 AC 133 ms
54,268 KB
testcase_06 AC 132 ms
54,268 KB
testcase_07 AC 133 ms
54,128 KB
testcase_08 AC 132 ms
54,428 KB
testcase_09 AC 131 ms
54,244 KB
testcase_10 AC 132 ms
54,348 KB
testcase_11 AC 132 ms
54,212 KB
testcase_12 AC 133 ms
54,248 KB
testcase_13 AC 133 ms
54,008 KB
testcase_14 AC 135 ms
54,072 KB
testcase_15 AC 136 ms
54,080 KB
testcase_16 AC 132 ms
53,836 KB
testcase_17 AC 140 ms
54,260 KB
testcase_18 AC 133 ms
54,232 KB
testcase_19 AC 131 ms
53,956 KB
testcase_20 AC 130 ms
54,204 KB
testcase_21 AC 134 ms
54,204 KB
testcase_22 AC 132 ms
54,352 KB
testcase_23 AC 133 ms
54,236 KB
testcase_24 AC 130 ms
54,300 KB
testcase_25 AC 134 ms
54,020 KB
testcase_26 AC 136 ms
54,280 KB
testcase_27 AC 135 ms
53,864 KB
testcase_28 AC 139 ms
54,080 KB
testcase_29 AC 132 ms
54,136 KB
testcase_30 AC 131 ms
54,088 KB
testcase_31 AC 129 ms
54,228 KB
testcase_32 AC 129 ms
54,300 KB
testcase_33 AC 129 ms
54,224 KB
testcase_34 AC 133 ms
54,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise85{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    String s = sc.next();
    char[] sArray = s.toCharArray();

    int answer = 0;

    for(int i = 0; i < sArray.length; i++){
      for(int j = sArray.length - 1; j >= i; j--){
        if(sArray[i] == sArray[j]){
          char[] kArray = Arrays.copyOfRange(sArray, i, j + 1);
          if(kArray.length == sArray.length){
            continue;
          }
          char[] kArrayD = new char[kArray.length];
          for(int k = 0; k < kArray.length; k++){
            kArrayD[k] = kArray[kArray.length - 1 - k];
          }
          if(Arrays.equals(kArray, kArrayD)){
            answer = Math.max(answer, kArray.length);
          }
        }
      }
    }
    System.out.println(answer);
  }
}
0