結果
問題 | No.672 最長AB列 |
ユーザー | Tsukasa_Type |
提出日時 | 2018-05-18 01:18:17 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 907 bytes |
コンパイル時間 | 2,175 ms |
コンパイル使用メモリ | 78,928 KB |
実行使用メモリ | 67,432 KB |
最終ジャッジ日時 | 2024-06-28 13:39:45 |
合計ジャッジ時間 | 6,904 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 124 ms
41,240 KB |
testcase_01 | AC | 125 ms
41,000 KB |
testcase_02 | AC | 122 ms
40,932 KB |
testcase_03 | AC | 111 ms
40,280 KB |
testcase_04 | AC | 124 ms
41,136 KB |
testcase_05 | AC | 124 ms
41,268 KB |
testcase_06 | AC | 122 ms
40,884 KB |
testcase_07 | AC | 125 ms
51,860 KB |
testcase_08 | WA | - |
testcase_09 | AC | 344 ms
67,432 KB |
testcase_10 | AC | 316 ms
54,752 KB |
testcase_11 | AC | 291 ms
50,972 KB |
testcase_12 | WA | - |
testcase_13 | AC | 266 ms
46,748 KB |
testcase_14 | WA | - |
testcase_15 | AC | 264 ms
46,908 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 245 ms
43,356 KB |
ソースコード
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 = 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)); } }