結果
問題 | No.672 最長AB列 |
ユーザー | tenten |
提出日時 | 2023-02-15 16:07:53 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 232 ms / 2,000 ms |
コード長 | 1,998 bytes |
コンパイル時間 | 2,941 ms |
コンパイル使用メモリ | 97,752 KB |
実行使用メモリ | 67,588 KB |
最終ジャッジ日時 | 2024-07-18 01:10:28 |
合計ジャッジ時間 | 6,375 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
50,216 KB |
testcase_01 | AC | 55 ms
50,076 KB |
testcase_02 | AC | 56 ms
50,480 KB |
testcase_03 | AC | 55 ms
50,212 KB |
testcase_04 | AC | 56 ms
50,540 KB |
testcase_05 | AC | 54 ms
50,664 KB |
testcase_06 | AC | 54 ms
50,544 KB |
testcase_07 | AC | 54 ms
50,588 KB |
testcase_08 | AC | 54 ms
50,284 KB |
testcase_09 | AC | 232 ms
67,588 KB |
testcase_10 | AC | 201 ms
62,860 KB |
testcase_11 | AC | 193 ms
61,972 KB |
testcase_12 | AC | 179 ms
56,104 KB |
testcase_13 | AC | 167 ms
55,228 KB |
testcase_14 | AC | 179 ms
56,196 KB |
testcase_15 | AC | 161 ms
55,144 KB |
testcase_16 | AC | 167 ms
55,972 KB |
testcase_17 | AC | 198 ms
62,452 KB |
testcase_18 | AC | 154 ms
52,648 KB |
ソースコード
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, Integer> places = new HashMap<>(); places.put(0, -1); int ans = 0; int current = 0; for (int i = 0; i < inputs.length; i++) { if (inputs[i] == 'A') { current++; } else { current--; } if (places.containsKey(current)) { ans = Math.max(ans, i - places.get(current)); } else { places.put(current, i); } } 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(); } }