結果

問題 No.273 回文分解
ユーザー ぴろずぴろず
提出日時 2015-08-28 22:24:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 2,583 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-06-25 13:23:18
合計ジャッジ時間 7,337 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,264 KB
testcase_01 AC 120 ms
54,520 KB
testcase_02 AC 120 ms
53,928 KB
testcase_03 AC 125 ms
54,112 KB
testcase_04 AC 122 ms
53,916 KB
testcase_05 AC 124 ms
53,876 KB
testcase_06 AC 124 ms
54,036 KB
testcase_07 AC 124 ms
54,336 KB
testcase_08 AC 109 ms
53,156 KB
testcase_09 AC 121 ms
54,220 KB
testcase_10 AC 121 ms
54,112 KB
testcase_11 AC 122 ms
54,008 KB
testcase_12 AC 124 ms
54,248 KB
testcase_13 AC 109 ms
53,164 KB
testcase_14 AC 120 ms
54,220 KB
testcase_15 AC 122 ms
54,080 KB
testcase_16 AC 122 ms
54,112 KB
testcase_17 AC 122 ms
54,044 KB
testcase_18 AC 122 ms
54,008 KB
testcase_19 AC 122 ms
54,164 KB
testcase_20 AC 126 ms
54,156 KB
testcase_21 AC 124 ms
54,052 KB
testcase_22 AC 128 ms
54,500 KB
testcase_23 AC 122 ms
54,028 KB
testcase_24 AC 122 ms
54,324 KB
testcase_25 AC 120 ms
54,232 KB
testcase_26 AC 120 ms
54,156 KB
testcase_27 AC 122 ms
54,032 KB
testcase_28 AC 127 ms
54,328 KB
testcase_29 AC 111 ms
53,200 KB
testcase_30 AC 124 ms
54,116 KB
testcase_31 AC 126 ms
54,140 KB
testcase_32 AC 122 ms
53,076 KB
testcase_33 AC 127 ms
54,060 KB
testcase_34 AC 120 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no273;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		int n = s.length;
		int ans = 0;
		for(int i=0;i<n;i++) {
			LOOP: for(int j=i;j<n;j++) {
				for(int k=i;k<=j;k++) {
					if (s[k] != s[j-(k-i)]) {
						continue LOOP;
					}
				}
				int len = j - i + 1;
				if (len < n) {
					ans = Math.max(ans,len);
				}
			}
		}
		System.out.println(ans);
	}

}
0