結果

問題 No.672 最長AB列
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-05-18 01:22:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 1,036 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 76,636 KB
実行使用メモリ 67,076 KB
最終ジャッジ日時 2024-06-28 13:40:10
合計ジャッジ時間 6,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,012 KB
testcase_01 AC 124 ms
41,108 KB
testcase_02 AC 126 ms
40,992 KB
testcase_03 AC 121 ms
40,920 KB
testcase_04 AC 132 ms
40,856 KB
testcase_05 AC 124 ms
41,120 KB
testcase_06 AC 124 ms
41,292 KB
testcase_07 AC 124 ms
40,792 KB
testcase_08 AC 124 ms
40,720 KB
testcase_09 AC 343 ms
67,076 KB
testcase_10 AC 314 ms
54,928 KB
testcase_11 AC 315 ms
54,916 KB
testcase_12 AC 270 ms
46,936 KB
testcase_13 AC 281 ms
46,636 KB
testcase_14 AC 263 ms
46,684 KB
testcase_15 AC 275 ms
47,000 KB
testcase_16 AC 271 ms
47,148 KB
testcase_17 AC 299 ms
54,120 KB
testcase_18 AC 255 ms
43,232 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);
				ar[i+1] = numA-numB;
			}
			else {
				numB++;
//				ar[i+1] = Math.abs(numA-numB);
				ar[i+1] = 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 = 0;
		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));
//		for (int i=0; i<n+1; i++) {
//			out.print((i==0?"":" ")+ar[i]);
//		}
	}
}
0