結果

問題 No.2276 I Want AC
ユーザー tentententen
提出日時 2024-04-03 11:00:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 1,793 bytes
コンパイル時間 2,716 ms
コンパイル使用メモリ 78,828 KB
実行使用メモリ 53,900 KB
最終ジャッジ日時 2024-09-30 23:42:17
合計ジャッジ時間 10,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,432 KB
testcase_01 AC 52 ms
50,020 KB
testcase_02 AC 53 ms
50,272 KB
testcase_03 AC 54 ms
50,244 KB
testcase_04 AC 52 ms
50,500 KB
testcase_05 AC 50 ms
50,416 KB
testcase_06 AC 50 ms
50,128 KB
testcase_07 AC 49 ms
50,352 KB
testcase_08 AC 50 ms
50,208 KB
testcase_09 AC 50 ms
50,396 KB
testcase_10 AC 51 ms
50,344 KB
testcase_11 AC 73 ms
51,240 KB
testcase_12 AC 113 ms
51,936 KB
testcase_13 AC 72 ms
51,144 KB
testcase_14 AC 76 ms
50,812 KB
testcase_15 AC 88 ms
51,808 KB
testcase_16 AC 89 ms
52,036 KB
testcase_17 AC 109 ms
51,536 KB
testcase_18 AC 95 ms
51,880 KB
testcase_19 AC 56 ms
50,040 KB
testcase_20 AC 114 ms
51,756 KB
testcase_21 AC 89 ms
51,372 KB
testcase_22 AC 66 ms
50,756 KB
testcase_23 AC 123 ms
51,996 KB
testcase_24 AC 113 ms
51,876 KB
testcase_25 AC 124 ms
51,892 KB
testcase_26 AC 113 ms
52,140 KB
testcase_27 AC 113 ms
52,012 KB
testcase_28 AC 115 ms
52,048 KB
testcase_29 AC 112 ms
51,828 KB
testcase_30 AC 114 ms
51,780 KB
testcase_31 AC 107 ms
52,168 KB
testcase_32 AC 116 ms
52,288 KB
testcase_33 AC 112 ms
53,900 KB
testcase_34 AC 115 ms
51,792 KB
testcase_35 AC 111 ms
52,016 KB
testcase_36 AC 117 ms
52,028 KB
testcase_37 AC 116 ms
51,932 KB
testcase_38 AC 108 ms
52,172 KB
testcase_39 AC 112 ms
51,952 KB
testcase_40 AC 101 ms
52,148 KB
testcase_41 AC 109 ms
52,168 KB
testcase_42 AC 111 ms
51,868 KB
testcase_43 AC 111 ms
52,112 KB
testcase_44 AC 112 ms
52,000 KB
testcase_45 AC 109 ms
52,060 KB
testcase_46 AC 109 ms
52,052 KB
testcase_47 AC 107 ms
52,052 KB
testcase_48 AC 107 ms
52,060 KB
testcase_49 AC 117 ms
52,048 KB
testcase_50 AC 116 ms
51,924 KB
testcase_51 AC 112 ms
52,160 KB
testcase_52 AC 113 ms
51,748 KB
testcase_53 AC 118 ms
52,336 KB
testcase_54 AC 113 ms
52,112 KB
testcase_55 AC 113 ms
51,996 KB
testcase_56 AC 115 ms
52,008 KB
testcase_57 AC 115 ms
52,192 KB
testcase_58 AC 108 ms
51,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] inputs = sc.next().toCharArray();
        int a = 0;
        long total = 0;
        for (int i = 0; i < n; i++) {
            if (inputs[i] == 'C') {
                total += a;
            } else {
                a++;
            }
        }
        long ans = total;
        int c = 0;
        for (int i = n - 1; i >= 0; i--) {
            if (inputs[i] == 'C') {
                c++;
            } else if (inputs[i] == 'A') {
                a--;
            } else {
                total -= c;
                a--;
                c++;
                total += a;
                ans = Math.max(ans, total);
            }
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0