結果

問題 No.672 最長AB列
ユーザー takeya_okinotakeya_okino
提出日時 2018-05-05 20:47:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 59,092 KB
最終ジャッジ日時 2024-06-28 02:02:31
合計ジャッジ時間 7,200 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,208 KB
testcase_01 AC 125 ms
41,076 KB
testcase_02 AC 124 ms
40,832 KB
testcase_03 AC 123 ms
41,420 KB
testcase_04 AC 126 ms
40,928 KB
testcase_05 AC 126 ms
40,944 KB
testcase_06 AC 123 ms
41,152 KB
testcase_07 AC 128 ms
41,220 KB
testcase_08 AC 129 ms
41,048 KB
testcase_09 AC 332 ms
59,092 KB
testcase_10 AC 322 ms
55,124 KB
testcase_11 AC 305 ms
52,840 KB
testcase_12 AC 281 ms
45,252 KB
testcase_13 AC 270 ms
45,608 KB
testcase_14 AC 278 ms
45,544 KB
testcase_15 AC 287 ms
45,516 KB
testcase_16 AC 265 ms
45,596 KB
testcase_17 AC 299 ms
51,864 KB
testcase_18 AC 264 ms
43,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    int ans = 0;
    int p = 0;
    HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();
    map.put(0, 0);
    for(int i = 0; i < s.length(); i++) {
      if(s.charAt(i) == 'A') p++;
      if(s.charAt(i) == 'B') p--;
      if(map.containsKey(p)) {
        ans = Math.max(ans, i + 1 - map.get(p));
      } else {
        map.put(p, i + 1);
      }
    }
    System.out.println(ans);
  }
}
0