結果

問題 No.2276 I Want AC
ユーザー tentententen
提出日時 2023-04-27 15:38:07
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,412 bytes
コンパイル時間 2,770 ms
コンパイル使用メモリ 94,064 KB
実行使用メモリ 133,200 KB
最終ジャッジ日時 2024-11-16 21:46:41
合計ジャッジ時間 118,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
42,420 KB
testcase_01 AC 47 ms
82,932 KB
testcase_02 AC 49 ms
42,008 KB
testcase_03 AC 49 ms
95,528 KB
testcase_04 AC 48 ms
42,320 KB
testcase_05 AC 47 ms
82,200 KB
testcase_06 AC 47 ms
42,240 KB
testcase_07 AC 48 ms
87,868 KB
testcase_08 AC 47 ms
42,348 KB
testcase_09 AC 47 ms
84,292 KB
testcase_10 AC 46 ms
41,824 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 113 ms
103,200 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 135 ms
70,880 KB
testcase_36 AC 136 ms
131,928 KB
testcase_37 TLE -
testcase_38 AC 163 ms
133,200 KB
testcase_39 AC 125 ms
66,748 KB
testcase_40 AC 159 ms
133,060 KB
testcase_41 AC 159 ms
70,856 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 138 ms
125,796 KB
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 136 ms
65,960 KB
testcase_48 AC 160 ms
133,104 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 AC 400 ms
68,156 KB
testcase_58 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static long ans = 0;
    static char[] inputs;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        inputs = sc.next().toCharArray();
        aac(0, 0, 0);
        System.out.println(ans);
    }
    
    static void aac(int idx, long a, long value) {
        if (idx == inputs.length) {
            ans = Math.max(ans, value);
            return;
        }
        if (inputs[idx] == 'A') {
            aac(idx + 1, a + 1, value);
        } else if (inputs[idx] == 'C') {
            aac(idx + 1, a, value + a);
        } else {
            aac(idx + 1, a + 1, value);
            cac(idx + 1, a, value + a);
        }
    }
    
    static void cac(int idx, long a, long value) {
        if (idx == inputs.length) {
            ans = Math.max(ans, value);
            return;
        }
        if (inputs[idx] == 'A') {
            cac(idx + 1, a + 1, value);
        } else if (inputs[idx] == 'C') {
            cac(idx + 1, a, value + a);
        } else {
            cac(idx + 1, a, value + a);
        }
    }
}
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