結果

問題 No.672 最長AB列
ユーザー tentententen
提出日時 2020-09-04 09:05:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 70,152 KB
最終ジャッジ日時 2024-11-25 01:29:10
合計ジャッジ時間 6,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,096 KB
testcase_01 AC 125 ms
54,108 KB
testcase_02 AC 117 ms
54,112 KB
testcase_03 AC 121 ms
54,124 KB
testcase_04 AC 108 ms
52,924 KB
testcase_05 AC 117 ms
53,920 KB
testcase_06 AC 119 ms
54,268 KB
testcase_07 AC 99 ms
52,872 KB
testcase_08 AC 113 ms
54,064 KB
testcase_09 AC 305 ms
70,152 KB
testcase_10 AC 278 ms
64,968 KB
testcase_11 AC 291 ms
64,388 KB
testcase_12 AC 256 ms
57,200 KB
testcase_13 AC 234 ms
56,844 KB
testcase_14 AC 251 ms
56,832 KB
testcase_15 AC 230 ms
56,600 KB
testcase_16 AC 247 ms
57,016 KB
testcase_17 AC 293 ms
64,408 KB
testcase_18 AC 230 ms
56,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	char[] arr = sc.next().toCharArray();
    	int current = 0;
    	int max = 0;
    	HashMap<Integer, Integer> places = new HashMap<>();
    	places.put(0, -1);
    	for (int i = 0; i < arr.length; i++) {
    	    if (arr[i] == 'A') {
    	        current++;
    	    } else {
    	        current--;
    	    }
    	    if (places.containsKey(current)) {
    	        max = Math.max(max, i - places.get(current));
    	    } else {
    	        places.put(current, i);
    	    }
    	}
    	System.out.println(max);
	}
}
0