結果

問題 No.672 最長AB列
ユーザー htensaihtensai
提出日時 2019-11-12 08:42:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 501 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 79,752 KB
実行使用メモリ 88,128 KB
最終ジャッジ日時 2024-09-17 11:53:39
合計ジャッジ時間 8,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,108 KB
testcase_01 AC 131 ms
41,404 KB
testcase_02 AC 130 ms
41,328 KB
testcase_03 AC 126 ms
41,004 KB
testcase_04 AC 129 ms
41,124 KB
testcase_05 AC 125 ms
41,020 KB
testcase_06 AC 129 ms
41,400 KB
testcase_07 AC 131 ms
41,384 KB
testcase_08 AC 125 ms
41,032 KB
testcase_09 AC 501 ms
88,128 KB
testcase_10 AC 428 ms
69,504 KB
testcase_11 AC 432 ms
69,116 KB
testcase_12 AC 440 ms
58,512 KB
testcase_13 AC 429 ms
57,996 KB
testcase_14 AC 427 ms
56,424 KB
testcase_15 AC 424 ms
57,400 KB
testcase_16 AC 410 ms
57,528 KB
testcase_17 AC 481 ms
76,316 KB
testcase_18 AC 409 ms
56,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		int[] sums = new int[arr.length + 1];
		HashMap<Integer, TreeSet<Integer>> map = new HashMap<>();
		TreeSet<Integer> first = new TreeSet<>();
		first.add(0);
		map.put(0, first);
		for (int i = 1; i <= arr.length; i++) {
		    sums[i] = sums[i - 1];
		    if (arr[i - 1] == 'A') {
		        sums[i]++;
		    } else {
		        sums[i]--;
		    }
		    if (map.containsKey(sums[i])) {
		        map.get(sums[i]).add(i);
		    } else {
		        TreeSet<Integer> set = new TreeSet<>();
		        set.add(i);
		        map.put(sums[i], set);
		    }
		}
		int max = 0;
		for (TreeSet<Integer> set : map.values()) {
		    max = Math.max(max, set.last() - set.first());
		}
		System.out.println(max);
   }
}

0