結果
問題 | No.588 空白と回文 |
ユーザー | uafr_cs |
提出日時 | 2017-11-03 22:34:31 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 170 ms / 2,000 ms |
コード長 | 1,044 bytes |
コンパイル時間 | 2,141 ms |
コンパイル使用メモリ | 77,588 KB |
実行使用メモリ | 41,624 KB |
最終ジャッジ日時 | 2024-05-02 05:06:48 |
合計ジャッジ時間 | 6,576 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
41,088 KB |
testcase_01 | AC | 133 ms
41,244 KB |
testcase_02 | AC | 129 ms
41,364 KB |
testcase_03 | AC | 159 ms
41,624 KB |
testcase_04 | AC | 129 ms
40,900 KB |
testcase_05 | AC | 131 ms
41,100 KB |
testcase_06 | AC | 128 ms
41,368 KB |
testcase_07 | AC | 130 ms
41,024 KB |
testcase_08 | AC | 130 ms
40,912 KB |
testcase_09 | AC | 131 ms
40,912 KB |
testcase_10 | AC | 130 ms
40,888 KB |
testcase_11 | AC | 160 ms
41,360 KB |
testcase_12 | AC | 145 ms
41,308 KB |
testcase_13 | AC | 128 ms
41,096 KB |
testcase_14 | AC | 129 ms
41,496 KB |
testcase_15 | AC | 129 ms
41,228 KB |
testcase_16 | AC | 129 ms
41,212 KB |
testcase_17 | AC | 149 ms
41,096 KB |
testcase_18 | AC | 136 ms
41,476 KB |
testcase_19 | AC | 134 ms
41,108 KB |
testcase_20 | AC | 150 ms
41,412 KB |
testcase_21 | AC | 170 ms
41,172 KB |
testcase_22 | AC | 164 ms
41,336 KB |
testcase_23 | AC | 161 ms
41,348 KB |
testcase_24 | AC | 128 ms
41,220 KB |
ソースコード
import java.util.Arrays; import java.util.HashSet; import java.util.LinkedList; import java.util.Scanner; public class Main { public static long MOD = 1000000007; public static void main(String[] args) { Scanner sc = new Scanner(System.in); final char[] input = sc.next().toCharArray(); int answer = 0; for(int start = 0; start < input.length; start++){ // for_odd int odd_count = 1; for(int diff = 1; diff <= input.length; diff++){ final int left = start - diff; final int right = start + diff; if(left < 0 || right >= input.length){ break; } if(input[left] == input[right]){ odd_count += 2; } } int even_count = 0; for(int diff = 1; diff <= input.length; diff++){ final int left = start - (diff - 1); final int right = start + diff; if(left < 0 || right >= input.length){ break; } if(input[left] == input[right]){ even_count += 2; } } answer = Math.max(answer, Math.max(odd_count, even_count)); } System.out.println(answer); } }