結果
問題 | No.464 PPAP |
ユーザー | tenten |
提出日時 | 2020-12-24 12:17:19 |
言語 | Java (openjdk 23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,262 bytes |
コンパイル時間 | 3,345 ms |
コンパイル使用メモリ | 76,924 KB |
実行使用メモリ | 85,516 KB |
最終ジャッジ日時 | 2024-09-21 16:51:18 |
合計ジャッジ時間 | 8,219 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 99 ms
45,456 KB |
testcase_01 | AC | 121 ms
41,496 KB |
testcase_02 | AC | 97 ms
40,004 KB |
testcase_03 | AC | 112 ms
41,384 KB |
testcase_04 | AC | 110 ms
40,800 KB |
testcase_05 | AC | 101 ms
39,864 KB |
testcase_06 | AC | 108 ms
41,352 KB |
testcase_07 | AC | 502 ms
41,924 KB |
testcase_08 | AC | 250 ms
42,564 KB |
testcase_09 | AC | 129 ms
42,380 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
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; boolean[][] isUse = new boolean[length][length]; for (int i = 0; i < length; i++) { for (int j = i; j < length; j++) { int left = i; int right = j; isUse[i][j] = true; while (left < right) { if (arr[left] != arr[right]) { isUse[i][j] = false; break; } left++; right--; } } } int ans = 0; for (int i = 0; i < length - 3; i++) { if (!isUse[0][i]) { continue; } for (int j = i + 1; j < length - 2; j++) { if (!isUse[i + 1][j]) { continue; } for (int k = j + 2; k < length; k++) { if (isUse[k][length - 1]) { ans++; } } } } System.out.println(ans); } }