結果

問題 No.1433 Two color sequence
ユーザー tentententen
提出日時 2021-03-22 12:06:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 965 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 57,592 KB
最終ジャッジ日時 2024-11-23 21:49:43
合計ジャッジ時間 20,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,156 KB
testcase_01 AC 125 ms
40,916 KB
testcase_02 AC 124 ms
41,332 KB
testcase_03 AC 759 ms
51,376 KB
testcase_04 AC 741 ms
52,108 KB
testcase_05 AC 125 ms
40,968 KB
testcase_06 AC 121 ms
41,036 KB
testcase_07 AC 122 ms
41,152 KB
testcase_08 AC 864 ms
53,412 KB
testcase_09 AC 890 ms
56,648 KB
testcase_10 AC 836 ms
53,752 KB
testcase_11 AC 847 ms
53,840 KB
testcase_12 AC 866 ms
53,812 KB
testcase_13 AC 965 ms
53,372 KB
testcase_14 AC 872 ms
53,832 KB
testcase_15 AC 884 ms
53,928 KB
testcase_16 AC 868 ms
54,184 KB
testcase_17 AC 823 ms
57,592 KB
testcase_18 AC 912 ms
53,920 KB
testcase_19 AC 906 ms
54,172 KB
testcase_20 AC 866 ms
54,016 KB
testcase_21 AC 924 ms
54,092 KB
testcase_22 AC 855 ms
54,284 KB
testcase_23 AC 847 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        char[] colors = sc.next().toCharArray();
        long min = 0;
        long max = 0;
        long value = 0;
        long ans = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (colors[i] == 'B') {
                x *= -1;
            }
            value += x;
            ans = Math.max(ans, value - min);
            ans = Math.max(ans, max - value);
            min = Math.min(min, value);
            max = Math.max(max, value);
        } 
        System.out.println(ans);
    }
}
0