結果

問題 No.672 最長AB列
ユーザー fal_rndfal_rnd
提出日時 2018-04-13 23:54:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 490 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 2,868 ms
コンパイル使用メモリ 93,480 KB
実行使用メモリ 79,348 KB
最終ジャッジ日時 2024-06-27 19:57:44
合計ジャッジ時間 8,675 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,400 KB
testcase_01 AC 133 ms
41,152 KB
testcase_02 AC 130 ms
41,336 KB
testcase_03 AC 131 ms
41,152 KB
testcase_04 AC 132 ms
40,976 KB
testcase_05 AC 134 ms
41,064 KB
testcase_06 AC 126 ms
41,256 KB
testcase_07 AC 128 ms
41,244 KB
testcase_08 AC 130 ms
41,200 KB
testcase_09 AC 490 ms
79,348 KB
testcase_10 AC 451 ms
70,076 KB
testcase_11 AC 467 ms
67,664 KB
testcase_12 AC 300 ms
47,104 KB
testcase_13 AC 299 ms
47,004 KB
testcase_14 AC 314 ms
46,564 KB
testcase_15 AC 312 ms
46,824 KB
testcase_16 AC 308 ms
46,244 KB
testcase_17 AC 409 ms
64,052 KB
testcase_18 AC 299 ms
46,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	public static void main(String[] $){
		Scanner s=new Scanner(System.in);
		char[]v=s.next().toCharArray();
		int n=v.length;
		int[]d=new int[n+1];
		for(int i=0;i<n;++i)
			d[i+1]=d[i]+(v[i]=='A'?1:-1);

		Map<Integer,Integer>left=new HashMap<>(),right=new HashMap<>();
		for(int i=0;i<n+1;++i) {
			left.merge(d[i],i,Math::min);
			right.merge(d[i],i,Math::max);
		}
		
		System.out.println(
				right.keySet().stream()
				.map(i->right.get(i)-left.getOrDefault(i,Integer.MAX_VALUE))
				.mapToInt(o->o)
				.max().getAsInt()
				);
	}
}
0