結果

問題 No.2276 I Want AC
ユーザー tentententen
提出日時 2023-07-26 18:49:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 2,170 bytes
コンパイル時間 2,670 ms
コンパイル使用メモリ 88,960 KB
実行使用メモリ 52,440 KB
最終ジャッジ日時 2024-10-03 05:27:13
合計ジャッジ時間 9,746 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,352 KB
testcase_01 AC 48 ms
50,424 KB
testcase_02 AC 49 ms
50,504 KB
testcase_03 AC 47 ms
50,396 KB
testcase_04 AC 49 ms
50,360 KB
testcase_05 AC 48 ms
50,344 KB
testcase_06 AC 48 ms
50,444 KB
testcase_07 AC 48 ms
50,408 KB
testcase_08 AC 56 ms
50,324 KB
testcase_09 AC 49 ms
50,468 KB
testcase_10 AC 48 ms
50,176 KB
testcase_11 AC 76 ms
51,384 KB
testcase_12 AC 102 ms
52,100 KB
testcase_13 AC 64 ms
51,028 KB
testcase_14 AC 59 ms
50,748 KB
testcase_15 AC 89 ms
51,828 KB
testcase_16 AC 87 ms
51,860 KB
testcase_17 AC 102 ms
52,316 KB
testcase_18 AC 101 ms
52,176 KB
testcase_19 AC 49 ms
50,220 KB
testcase_20 AC 115 ms
52,136 KB
testcase_21 AC 71 ms
51,396 KB
testcase_22 AC 63 ms
51,124 KB
testcase_23 AC 104 ms
52,012 KB
testcase_24 AC 110 ms
52,004 KB
testcase_25 AC 108 ms
52,228 KB
testcase_26 AC 109 ms
52,084 KB
testcase_27 AC 110 ms
52,056 KB
testcase_28 AC 106 ms
52,000 KB
testcase_29 AC 105 ms
52,204 KB
testcase_30 AC 108 ms
52,132 KB
testcase_31 AC 105 ms
52,236 KB
testcase_32 AC 106 ms
52,140 KB
testcase_33 AC 105 ms
52,080 KB
testcase_34 AC 104 ms
52,120 KB
testcase_35 AC 101 ms
51,780 KB
testcase_36 AC 99 ms
52,316 KB
testcase_37 AC 104 ms
52,080 KB
testcase_38 AC 88 ms
51,972 KB
testcase_39 AC 104 ms
52,144 KB
testcase_40 AC 103 ms
52,284 KB
testcase_41 AC 102 ms
52,172 KB
testcase_42 AC 101 ms
51,920 KB
testcase_43 AC 103 ms
52,056 KB
testcase_44 AC 106 ms
52,088 KB
testcase_45 AC 110 ms
52,156 KB
testcase_46 AC 109 ms
52,072 KB
testcase_47 AC 103 ms
52,360 KB
testcase_48 AC 105 ms
52,156 KB
testcase_49 AC 112 ms
52,256 KB
testcase_50 AC 110 ms
52,216 KB
testcase_51 AC 104 ms
52,256 KB
testcase_52 AC 102 ms
52,008 KB
testcase_53 AC 108 ms
52,360 KB
testcase_54 AC 101 ms
52,072 KB
testcase_55 AC 103 ms
52,092 KB
testcase_56 AC 101 ms
52,092 KB
testcase_57 AC 103 ms
52,196 KB
testcase_58 AC 103 ms
52,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
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 frontA = 0;
        long current = 0;
        for (int i = 0; i < n; i++) {
            if (inputs[i] == 'C') {
                current += frontA;
            } else {
                frontA++;
            }
        }
        int rearC = 0;
        long ans = current;
        for (int i = n - 1; i >= 0; i--) {
            if (inputs[i] == 'A') {
                frontA--;
            } else if (inputs[i] == 'C') {
                rearC++;
            } else {
                frontA--;
                current += frontA - rearC;
                ans = Math.max(ans, current);
                rearC++;
            }
        }
        System.out.println(ans);
    }
    
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0