結果
問題 | No.1617 Palindrome Removal |
ユーザー | ks2m |
提出日時 | 2021-07-22 21:27:09 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 633 bytes |
コンパイル時間 | 2,276 ms |
コンパイル使用メモリ | 74,388 KB |
実行使用メモリ | 49,464 KB |
最終ジャッジ日時 | 2024-07-17 16:20:58 |
合計ジャッジ時間 | 8,719 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 316 ms
49,140 KB |
testcase_01 | AC | 312 ms
49,076 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 298 ms
49,108 KB |
testcase_07 | AC | 274 ms
48,360 KB |
testcase_08 | AC | 128 ms
41,188 KB |
testcase_09 | AC | 128 ms
40,996 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 129 ms
41,452 KB |
testcase_16 | AC | 130 ms
41,132 KB |
testcase_17 | AC | 127 ms
41,348 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 130 ms
41,104 KB |
testcase_23 | RE | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); char[] s = sc.next().toCharArray(); sc.close(); int n = s.length; boolean all = true; boolean kai = true; for (int i = 0; i < n; i++) { if (s[0] != s[i]) { all = false; } if (s[i] != s[n - 1 - i]) { kai = false; } } if (!kai) { System.out.println(n); return; } if (all) { if (n % 2 == 0) { System.out.println(0); } else { System.out.println(-1); } } else { System.out.println(n - 2); throw new Exception(); } } }