結果

問題 No.672 最長AB列
ユーザー tentententen
提出日時 2020-09-04 09:05:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 2,276 ms
コンパイル使用メモリ 80,236 KB
実行使用メモリ 59,768 KB
最終ジャッジ日時 2024-05-03 21:03:54
合計ジャッジ時間 6,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,160 KB
testcase_01 AC 96 ms
39,556 KB
testcase_02 AC 115 ms
40,840 KB
testcase_03 AC 115 ms
41,032 KB
testcase_04 AC 126 ms
41,408 KB
testcase_05 AC 113 ms
40,876 KB
testcase_06 AC 112 ms
40,972 KB
testcase_07 AC 115 ms
41,272 KB
testcase_08 AC 111 ms
41,156 KB
testcase_09 AC 288 ms
59,768 KB
testcase_10 AC 292 ms
55,228 KB
testcase_11 AC 293 ms
54,648 KB
testcase_12 AC 241 ms
45,776 KB
testcase_13 AC 226 ms
45,476 KB
testcase_14 AC 242 ms
46,392 KB
testcase_15 AC 255 ms
45,836 KB
testcase_16 AC 236 ms
45,840 KB
testcase_17 AC 301 ms
55,620 KB
testcase_18 AC 217 ms
43,072 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