結果

問題 No.672 最長AB列
ユーザー fal_rndfal_rnd
提出日時 2018-04-13 23:58:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 504 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 2,865 ms
コンパイル使用メモリ 87,832 KB
実行使用メモリ 80,468 KB
最終ジャッジ日時 2024-06-27 19:58:47
合計ジャッジ時間 8,421 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,380 KB
testcase_01 AC 137 ms
41,480 KB
testcase_02 AC 133 ms
41,180 KB
testcase_03 AC 134 ms
41,496 KB
testcase_04 AC 135 ms
41,372 KB
testcase_05 AC 134 ms
41,176 KB
testcase_06 AC 136 ms
41,300 KB
testcase_07 AC 134 ms
41,092 KB
testcase_08 AC 136 ms
41,612 KB
testcase_09 AC 504 ms
80,468 KB
testcase_10 AC 447 ms
70,680 KB
testcase_11 AC 466 ms
67,328 KB
testcase_12 AC 327 ms
47,244 KB
testcase_13 AC 303 ms
46,616 KB
testcase_14 AC 318 ms
46,684 KB
testcase_15 AC 335 ms
46,724 KB
testcase_16 AC 306 ms
46,416 KB
testcase_17 AC 430 ms
63,916 KB
testcase_18 AC 290 ms
46,232 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,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> l=new HashMap<>(),r=new HashMap<>();
		for(int i=0;i<n+1;++i){
			l.merge(d[i],i,Math::min);
			r.merge(d[i],i,Math::max);
		}
		System.out.println(r.keySet().stream()
				.map(i->r.get(i)-l.getOrDefault(i,1<<20))
				.mapToInt(o->o).max().getAsInt());
	}
}
0