結果

問題 No.273 回文分解
ユーザー YamaKasaYamaKasa
提出日時 2018-09-08 18:30:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 3,218 ms
コンパイル使用メモリ 75,148 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-05-09 21:52:00
合計ジャッジ時間 8,597 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,180 KB
testcase_01 AC 133 ms
41,800 KB
testcase_02 AC 129 ms
41,488 KB
testcase_03 AC 134 ms
41,740 KB
testcase_04 AC 129 ms
41,572 KB
testcase_05 AC 136 ms
41,648 KB
testcase_06 AC 124 ms
41,360 KB
testcase_07 AC 122 ms
41,348 KB
testcase_08 AC 130 ms
41,672 KB
testcase_09 AC 125 ms
41,212 KB
testcase_10 AC 130 ms
41,524 KB
testcase_11 AC 124 ms
41,260 KB
testcase_12 AC 125 ms
41,056 KB
testcase_13 AC 125 ms
41,168 KB
testcase_14 AC 131 ms
41,488 KB
testcase_15 AC 128 ms
41,740 KB
testcase_16 AC 131 ms
41,868 KB
testcase_17 AC 127 ms
41,552 KB
testcase_18 AC 131 ms
41,692 KB
testcase_19 AC 132 ms
41,484 KB
testcase_20 AC 123 ms
41,604 KB
testcase_21 AC 114 ms
41,476 KB
testcase_22 AC 115 ms
41,556 KB
testcase_23 AC 113 ms
41,344 KB
testcase_24 AC 126 ms
41,584 KB
testcase_25 AC 116 ms
41,740 KB
testcase_26 AC 105 ms
41,840 KB
testcase_27 AC 99 ms
41,844 KB
testcase_28 AC 121 ms
41,612 KB
testcase_29 AC 124 ms
41,160 KB
testcase_30 AC 131 ms
41,824 KB
testcase_31 AC 128 ms
41,812 KB
testcase_32 AC 128 ms
41,692 KB
testcase_33 AC 130 ms
41,524 KB
testcase_34 AC 127 ms
41,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		if(S.length() == 2) {
			System.out.println(1);
			System.exit(0);
		}
		int N = S.length();
		for(int i = N - 1; i >= 2; i--) {
			for(int j = 0; j <= N - i; j++) {
				String s = S.substring(j, j + i);
				//System.out.println(s);
				boolean flag = true;
				for(int k = 0; k < s.length() / 2; k++) {
					char c1 = s.charAt(k);
					char c2 = s.charAt(s.length() - k - 1);
					if(c1 != c2) {
						flag = false;
						break;
					}
				}
				if(flag) {
					System.out.println(s.length());
					System.exit(0);
				}
			}
		}
		System.out.println(1);
	}
}
0