結果

問題 No.672 最長AB列
ユーザー tentententen
提出日時 2022-08-02 14:24:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 1,422 bytes
コンパイル時間 2,329 ms
コンパイル使用メモリ 77,932 KB
実行使用メモリ 57,764 KB
最終ジャッジ日時 2024-07-23 08:03:42
合計ジャッジ時間 5,813 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,652 KB
testcase_01 AC 53 ms
36,720 KB
testcase_02 AC 53 ms
36,652 KB
testcase_03 AC 54 ms
37,064 KB
testcase_04 AC 53 ms
37,188 KB
testcase_05 AC 53 ms
37,192 KB
testcase_06 AC 53 ms
37,080 KB
testcase_07 AC 56 ms
36,672 KB
testcase_08 AC 54 ms
37,016 KB
testcase_09 AC 231 ms
57,764 KB
testcase_10 AC 198 ms
53,176 KB
testcase_11 AC 193 ms
50,724 KB
testcase_12 AC 161 ms
44,568 KB
testcase_13 AC 173 ms
44,488 KB
testcase_14 AC 160 ms
44,452 KB
testcase_15 AC 177 ms
44,644 KB
testcase_16 AC 153 ms
43,940 KB
testcase_17 AC 203 ms
50,800 KB
testcase_18 AC 156 ms
40,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        HashMap<Integer, Integer> places = new HashMap<>();
        places.put(0, 0);
        int current = 0;
        int ans = 0;
        int idx = 1;
        for (char c : sc.next().toCharArray()) {
            if (c =='A') {
                current++;
            } else {
                current--;
            }
            if (places.containsKey(current)) {
                ans = Math.max(ans, idx - places.get(current));
            } else {
                places.put(current, idx);
            }
            idx++;
        }
        System.out.println(ans);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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