結果

問題 No.672 最長AB列
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-05-18 01:17:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 923 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 79,800 KB
実行使用メモリ 76,932 KB
最終ジャッジ日時 2024-06-28 13:39:38
合計ジャッジ時間 6,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
52,364 KB
testcase_01 AC 122 ms
41,108 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 125 ms
41,028 KB
testcase_05 AC 127 ms
41,188 KB
testcase_06 AC 126 ms
41,400 KB
testcase_07 AC 112 ms
41,232 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 324 ms
54,788 KB
testcase_11 AC 281 ms
51,128 KB
testcase_12 WA -
testcase_13 AC 284 ms
46,976 KB
testcase_14 WA -
testcase_15 AC 269 ms
46,956 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 258 ms
43,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;
import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		int n = s.length();
		int[] ar = new int[n+1];
		int numA = 0;
		int numB = 0;
		for (int i=0; i<n; i++) {
			if (s.charAt(i)=='A') {
				numA++;
				ar[i+1] = Math.abs(numA-numB);
			}
			else {
				numB++;
				ar[i+1] = Math.abs(numA-numB);
			}
		}
		
//		for (int i=1; i<s.length(); i++) {
//			ar[i] += ar[i-1];
//		}
		
		//0について調べるなら、一番左端の0と一番右端の0のみ考えればよい。
		Map<Integer,Integer> map = new HashMap<>();
		int max = Integer.MIN_VALUE;
		for (int i=0; i<n+1; i++) {
			if (map.containsKey(ar[i])) {
				max = Math.max(max,Math.abs(map.get(ar[i])-i));
			}
			else {
				map.put(ar[i],i);
			}
		}
		
		out.println(max);
//		map.forEach((k,v)->out.println(k+":"+v));
	}
}
0