結果

問題 No.588 空白と回文
ユーザー YamaKasaYamaKasa
提出日時 2018-09-25 15:02:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-10-04 15:09:53
合計ジャッジ時間 5,395 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,912 KB
testcase_01 AC 108 ms
54,004 KB
testcase_02 AC 107 ms
53,796 KB
testcase_03 AC 122 ms
53,244 KB
testcase_04 AC 98 ms
52,900 KB
testcase_05 AC 95 ms
52,808 KB
testcase_06 AC 109 ms
53,740 KB
testcase_07 AC 107 ms
53,572 KB
testcase_08 AC 108 ms
53,964 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 117 ms
54,024 KB
testcase_12 AC 117 ms
53,064 KB
testcase_13 WA -
testcase_14 AC 95 ms
52,948 KB
testcase_15 WA -
testcase_16 AC 106 ms
53,504 KB
testcase_17 AC 106 ms
53,104 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 111 ms
53,420 KB
testcase_21 AC 119 ms
54,020 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 96 ms
52,808 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);
		}
		System.out.println(max);
	}
}
0