結果
問題 | No.765 ukuku 2 |
ユーザー | htensai |
提出日時 | 2019-12-30 22:50:22 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,255 bytes |
コンパイル時間 | 2,008 ms |
コンパイル使用メモリ | 77,260 KB |
実行使用メモリ | 63,604 KB |
最終ジャッジ日時 | 2024-04-27 16:46:05 |
合計ジャッジ時間 | 11,290 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 102 ms
60,108 KB |
testcase_01 | AC | 117 ms
53,572 KB |
testcase_02 | AC | 111 ms
53,996 KB |
testcase_03 | AC | 113 ms
53,720 KB |
testcase_04 | AC | 92 ms
52,044 KB |
testcase_05 | AC | 99 ms
52,868 KB |
testcase_06 | AC | 112 ms
54,080 KB |
testcase_07 | AC | 98 ms
52,748 KB |
testcase_08 | AC | 102 ms
52,780 KB |
testcase_09 | AC | 102 ms
52,584 KB |
testcase_10 | AC | 111 ms
53,752 KB |
testcase_11 | AC | 96 ms
52,720 KB |
testcase_12 | AC | 114 ms
53,712 KB |
testcase_13 | AC | 105 ms
53,292 KB |
testcase_14 | AC | 123 ms
54,092 KB |
testcase_15 | AC | 118 ms
53,784 KB |
testcase_16 | AC | 117 ms
54,108 KB |
testcase_17 | AC | 115 ms
53,820 KB |
testcase_18 | AC | 115 ms
53,744 KB |
testcase_19 | AC | 103 ms
52,748 KB |
testcase_20 | AC | 110 ms
53,932 KB |
testcase_21 | AC | 96 ms
52,776 KB |
testcase_22 | AC | 96 ms
52,988 KB |
testcase_23 | AC | 108 ms
53,816 KB |
testcase_24 | AC | 114 ms
53,956 KB |
testcase_25 | AC | 118 ms
53,776 KB |
testcase_26 | AC | 124 ms
53,624 KB |
testcase_27 | AC | 101 ms
52,660 KB |
testcase_28 | AC | 116 ms
53,928 KB |
testcase_29 | AC | 110 ms
54,016 KB |
testcase_30 | AC | 215 ms
56,704 KB |
testcase_31 | AC | 215 ms
56,692 KB |
testcase_32 | AC | 217 ms
54,192 KB |
testcase_33 | TLE | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); char[] arr = sc.next().toCharArray(); int length = arr.length; int max = 1; for (int i = 0; i < length; i++) { int left = i; int right = i; while (left >= 0 && right < length && arr[left] == arr[right]) { if (right - left + 1 != length) { max = Math.max(max, right - left + 1); } left--; right++; } int left2 = left - 1; int right2 = right; while (left2 >= 0 && right2 < length && arr[left2] == arr[right2]) { max = Math.max(max, right2 - left2); left2--; right2++; } left2 = left; right2 = right + 1; while (left2 >= 0 && right2 < length && arr[left2] == arr[right2]) { max = Math.max(max, right2 - left2); left2--; right2++; } left = i; right = i + 1; while (left >= 0 && right < length && arr[left] == arr[right]) { if (right - left + 1 != length) { max = Math.max(max, right - left + 1); } left--; right++; } left2 = left - 1; right2 = right; while (left2 >= 0 && right2 < length && arr[left2] == arr[right2]) { max = Math.max(max, right2 - left2); left2--; right2++; } left2 = left; right2 = right + 1; while (left2 >= 0 && right2 < length && arr[left2] == arr[right2]) { max = Math.max(max, right2 - left2); left2--; right2++; } left = i; right = i + 2; while (left >= 0 && right < length && arr[left] == arr[right]) { max = Math.max(max, right - left); left--; right++; } } System.out.println(max); } }