結果

問題 No.588 空白と回文
ユーザー YamaKasaYamaKasa
提出日時 2018-09-25 15:06:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 2,500 ms
コンパイル使用メモリ 77,208 KB
実行使用メモリ 54,584 KB
最終ジャッジ日時 2024-10-04 15:21:53
合計ジャッジ時間 5,420 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,860 KB
testcase_01 AC 96 ms
52,916 KB
testcase_02 AC 97 ms
52,492 KB
testcase_03 AC 118 ms
53,408 KB
testcase_04 AC 117 ms
53,804 KB
testcase_05 AC 116 ms
54,252 KB
testcase_06 AC 102 ms
54,128 KB
testcase_07 AC 113 ms
53,720 KB
testcase_08 AC 114 ms
53,848 KB
testcase_09 AC 111 ms
53,968 KB
testcase_10 AC 110 ms
53,696 KB
testcase_11 AC 118 ms
53,988 KB
testcase_12 AC 108 ms
52,772 KB
testcase_13 AC 111 ms
54,120 KB
testcase_14 AC 91 ms
54,212 KB
testcase_15 AC 107 ms
53,996 KB
testcase_16 AC 111 ms
53,500 KB
testcase_17 AC 127 ms
53,844 KB
testcase_18 AC 113 ms
53,852 KB
testcase_19 AC 108 ms
53,572 KB
testcase_20 AC 123 ms
53,760 KB
testcase_21 AC 120 ms
53,988 KB
testcase_22 AC 123 ms
54,584 KB
testcase_23 AC 122 ms
54,124 KB
testcase_24 AC 110 ms
53,604 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();
		int l = S.length();
		char[]c1 = new char[l];
		char[]c2 = new char[l];
		for(int i = 0; i < l; i++) {
			c1[i] = S.charAt(i);
			c2[i] = S.charAt(l - i - 1);
		}
		int max = 0;
		for(int i = 0; i < l; i++) {
			int cnt = 0;
			for(int j = i; j < l; j++) {
				if(c1[j] == c2[j - i]) {
					cnt++;
				}
			}
			max = Math.max(max, cnt);
		}
		for(int i = 0; i < l; i++) {
			int cnt = 0;
			for(int j = i; j < l; j++) {
				if(c2[j] == c1[j - i]) {
					cnt++;
				}
			}
			max = Math.max(max, cnt);
		}
		System.out.println(max);
	}
}
0