結果
問題 | No.672 最長AB列 |
ユーザー | tenten |
提出日時 | 2023-04-14 14:40:46 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,231 bytes |
コンパイル時間 | 2,799 ms |
コンパイル使用メモリ | 95,908 KB |
実行使用メモリ | 85,228 KB |
最終ジャッジ日時 | 2024-10-10 06:25:23 |
合計ジャッジ時間 | 6,622 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,532 KB |
testcase_01 | AC | 53 ms
50,560 KB |
testcase_02 | AC | 53 ms
50,448 KB |
testcase_03 | AC | 53 ms
50,160 KB |
testcase_04 | AC | 53 ms
50,468 KB |
testcase_05 | AC | 52 ms
50,388 KB |
testcase_06 | AC | 52 ms
50,012 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 390 ms
85,228 KB |
testcase_10 | AC | 300 ms
78,372 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 294 ms
63,400 KB |
testcase_18 | WA | - |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); char[] inputs = sc.next().toCharArray(); HashMap<Integer, ArrayList<Integer>> places = new HashMap<>(); places.put(0, new ArrayList<>()); places.get(0).add(-1); int current = 0; for (int i = 0; i < inputs.length; i++) { if (inputs[i] == 'A') { current++; } else { current--; } if (!places.containsKey(current)) { places.put(current, new ArrayList<>()); } places.get(current).add(i); } int ans = 0; for (ArrayList<Integer> list : places.values()) { for (int i = 1; i < list.size(); i++) { ans = Math.max(ans, list.get(i) - list.get(i - 1)); } } System.out.println(ans); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }