結果
問題 | No.273 回文分解 |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-14 20:57:17 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 583 bytes |
コンパイル時間 | 1,776 ms |
コンパイル使用メモリ | 74,172 KB |
実行使用メモリ | 41,496 KB |
最終ジャッジ日時 | 2024-06-02 09:38:50 |
合計ジャッジ時間 | 6,555 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 104 ms
40,140 KB |
testcase_02 | AC | 102 ms
41,100 KB |
testcase_03 | AC | 90 ms
39,668 KB |
testcase_04 | WA | - |
testcase_05 | AC | 118 ms
41,052 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 100 ms
40,212 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 107 ms
41,496 KB |
testcase_15 | AC | 96 ms
40,316 KB |
testcase_16 | AC | 112 ms
41,104 KB |
testcase_17 | AC | 100 ms
40,112 KB |
testcase_18 | AC | 90 ms
39,568 KB |
testcase_19 | AC | 107 ms
41,076 KB |
testcase_20 | AC | 107 ms
41,240 KB |
testcase_21 | AC | 105 ms
41,092 KB |
testcase_22 | AC | 97 ms
40,476 KB |
testcase_23 | AC | 98 ms
40,248 KB |
testcase_24 | AC | 119 ms
41,124 KB |
testcase_25 | AC | 101 ms
40,344 KB |
testcase_26 | AC | 97 ms
40,084 KB |
testcase_27 | AC | 107 ms
41,364 KB |
testcase_28 | AC | 105 ms
40,380 KB |
testcase_29 | WA | - |
testcase_30 | AC | 97 ms
40,352 KB |
testcase_31 | AC | 103 ms
40,996 KB |
testcase_32 | AC | 106 ms
41,140 KB |
testcase_33 | AC | 99 ms
40,096 KB |
testcase_34 | AC | 107 ms
40,764 KB |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { String s = sc.next(); int leng = 0; for (int i=2; i<s.length(); i++) { boolean b = false; for (int j=0; j<s.length()-i+1; j++) { b = palindrome(s.substring(j,j+i)); if (b==true) {break;} } if (b==true) {leng = i;} } System.out.println(leng); } static boolean palindrome (String s) { boolean b; StringBuilder sb = new StringBuilder(s); sb.reverse(); b = sb.toString().equals(s)?true:false; return b; } }