結果
問題 | No.588 空白と回文 |
ユーザー | uafr_cs |
提出日時 | 2017-11-03 22:33:21 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,045 bytes |
コンパイル時間 | 2,504 ms |
コンパイル使用メモリ | 77,364 KB |
実行使用メモリ | 41,508 KB |
最終ジャッジ日時 | 2024-05-02 05:06:25 |
合計ジャッジ時間 | 7,108 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
41,096 KB |
testcase_01 | AC | 136 ms
40,828 KB |
testcase_02 | AC | 137 ms
40,876 KB |
testcase_03 | WA | - |
testcase_04 | AC | 136 ms
41,040 KB |
testcase_05 | AC | 133 ms
41,080 KB |
testcase_06 | AC | 134 ms
41,156 KB |
testcase_07 | AC | 134 ms
41,176 KB |
testcase_08 | AC | 124 ms
39,916 KB |
testcase_09 | AC | 134 ms
41,136 KB |
testcase_10 | AC | 136 ms
40,884 KB |
testcase_11 | WA | - |
testcase_12 | AC | 162 ms
41,060 KB |
testcase_13 | AC | 136 ms
41,148 KB |
testcase_14 | AC | 137 ms
41,224 KB |
testcase_15 | AC | 136 ms
41,148 KB |
testcase_16 | AC | 137 ms
41,172 KB |
testcase_17 | AC | 172 ms
41,076 KB |
testcase_18 | AC | 141 ms
41,176 KB |
testcase_19 | AC | 136 ms
41,188 KB |
testcase_20 | AC | 162 ms
41,368 KB |
testcase_21 | AC | 164 ms
41,092 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 137 ms
40,884 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); } }