結果
問題 | No.672 最長AB列 |
ユーザー | tenten |
提出日時 | 2024-07-23 13:12:56 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 405 ms / 2,000 ms |
コード長 | 1,748 bytes |
コンパイル時間 | 3,395 ms |
コンパイル使用メモリ | 79,944 KB |
実行使用メモリ | 85,564 KB |
最終ジャッジ日時 | 2024-07-23 13:13:07 |
合計ジャッジ時間 | 8,214 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
50,036 KB |
testcase_01 | AC | 56 ms
50,308 KB |
testcase_02 | AC | 54 ms
50,212 KB |
testcase_03 | AC | 57 ms
50,304 KB |
testcase_04 | AC | 58 ms
49,992 KB |
testcase_05 | AC | 56 ms
50,408 KB |
testcase_06 | AC | 55 ms
49,852 KB |
testcase_07 | AC | 56 ms
50,412 KB |
testcase_08 | AC | 56 ms
50,448 KB |
testcase_09 | AC | 405 ms
85,564 KB |
testcase_10 | AC | 298 ms
78,860 KB |
testcase_11 | AC | 299 ms
77,208 KB |
testcase_12 | AC | 192 ms
57,692 KB |
testcase_13 | AC | 192 ms
60,536 KB |
testcase_14 | AC | 202 ms
60,636 KB |
testcase_15 | AC | 191 ms
58,532 KB |
testcase_16 | AC | 188 ms
57,676 KB |
testcase_17 | AC | 302 ms
75,196 KB |
testcase_18 | AC | 172 ms
58,084 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); char[] inputs = sc.next().toCharArray(); Map<Integer, List<Integer>> places = new HashMap<>(); int current = 0; places.put(0, new ArrayList<>()); places.get(0).add(0); for (int i = 0; i < inputs.length; i++) { current += inputs[i] == 'A' ? 1 : -1; if (!places.containsKey(current)) { places.put(current, new ArrayList<>()); } places.get(current).add(i + 1); } int ans = 0; for (List<Integer> list : places.values()) { ans = Math.max(ans, list.get(list.size() - 1) - list.get(0)); } System.out.println(ans); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }