結果

問題 No.672 最長AB列
ユーザー tentententen
提出日時 2022-10-06 13:29:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 1,486 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 78,420 KB
実行使用メモリ 56,404 KB
最終ジャッジ日時 2024-06-10 23:19:53
合計ジャッジ時間 4,977 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,968 KB
testcase_01 AC 46 ms
36,852 KB
testcase_02 AC 46 ms
37,124 KB
testcase_03 AC 44 ms
37,240 KB
testcase_04 AC 44 ms
37,092 KB
testcase_05 AC 44 ms
37,136 KB
testcase_06 AC 44 ms
37,008 KB
testcase_07 AC 45 ms
37,112 KB
testcase_08 AC 46 ms
36,896 KB
testcase_09 AC 197 ms
56,404 KB
testcase_10 AC 176 ms
52,588 KB
testcase_11 AC 186 ms
51,772 KB
testcase_12 AC 149 ms
43,456 KB
testcase_13 AC 143 ms
44,496 KB
testcase_14 AC 152 ms
44,468 KB
testcase_15 AC 155 ms
44,508 KB
testcase_16 AC 148 ms
44,572 KB
testcase_17 AC 173 ms
49,184 KB
testcase_18 AC 135 ms
40,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] values = sc.next().toCharArray();
        HashMap<Integer, Integer> places = new HashMap<>();
        places.put(0, -1);
        int current = 0;
        int max = 0;
        for (int i = 0; i < values.length; i++) {
            if (values[i] == 'A') {
                current++;
            } else {
                current--;
            }
            if (places.containsKey(current)) {
                max = Math.max(max, i - places.get(current));
            } else {
                places.put(current, i);
            }
        }
        System.out.println(max);
    }
}
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0