結果

問題 No.672 最長AB列
ユーザー YamaKasaYamaKasa
提出日時 2018-10-01 14:47:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 2,180 ms
コンパイル使用メモリ 78,024 KB
実行使用メモリ 77,072 KB
最終ジャッジ日時 2024-10-12 09:46:33
合計ジャッジ時間 7,212 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,968 KB
testcase_01 AC 127 ms
54,152 KB
testcase_02 AC 127 ms
54,264 KB
testcase_03 AC 128 ms
54,088 KB
testcase_04 AC 127 ms
53,860 KB
testcase_05 AC 127 ms
54,044 KB
testcase_06 AC 127 ms
53,876 KB
testcase_07 AC 126 ms
53,956 KB
testcase_08 AC 128 ms
54,140 KB
testcase_09 AC 365 ms
76,860 KB
testcase_10 AC 379 ms
76,496 KB
testcase_11 AC 388 ms
76,772 KB
testcase_12 AC 277 ms
56,924 KB
testcase_13 AC 277 ms
57,420 KB
testcase_14 AC 276 ms
57,436 KB
testcase_15 AC 281 ms
57,344 KB
testcase_16 AC 269 ms
57,044 KB
testcase_17 AC 387 ms
77,072 KB
testcase_18 AC 259 ms
58,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		int len = S.length();
		Map<Integer, Integer> mapL = new HashMap<Integer, Integer>();
		Map<Integer, Integer> mapR = new HashMap<Integer, Integer>();
		int k = 0;
		mapL.put(0, 0);
		for(int i = 0; i < len; i++) {
			char c = S.charAt(i);
			if(c == 'A') {
				k++;
			}else {
				k--;
			}
			if(!mapL.containsKey(k)) {
				mapL.put(k, i + 1);
			}else {
				mapR.put(k, i + 1);
			}
		}
		int max = 0;
		for(int key : mapL.keySet()) {
			if(mapR.containsKey(key)) {
				int t = mapR.get(key) - mapL.get(key);
				max = Math.max(max, t);
			}
		}
		System.out.println(max);
	}
}
0