結果

問題 No.1433 Two color sequence
ユーザー ApassApass
提出日時 2021-03-19 22:44:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,072 bytes
コンパイル時間 3,851 ms
コンパイル使用メモリ 77,996 KB
実行使用メモリ 65,804 KB
最終ジャッジ日時 2024-11-19 00:01:42
合計ジャッジ時間 10,546 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,404 KB
testcase_01 AC 51 ms
50,476 KB
testcase_02 AC 51 ms
50,428 KB
testcase_03 AC 206 ms
56,128 KB
testcase_04 AC 206 ms
56,104 KB
testcase_05 WA -
testcase_06 AC 51 ms
50,348 KB
testcase_07 AC 51 ms
50,332 KB
testcase_08 AC 316 ms
65,436 KB
testcase_09 AC 328 ms
65,452 KB
testcase_10 AC 311 ms
65,220 KB
testcase_11 AC 307 ms
64,476 KB
testcase_12 AC 294 ms
65,120 KB
testcase_13 AC 302 ms
65,504 KB
testcase_14 AC 284 ms
65,516 KB
testcase_15 AC 282 ms
64,932 KB
testcase_16 AC 312 ms
65,804 KB
testcase_17 AC 287 ms
65,576 KB
testcase_18 AC 295 ms
65,312 KB
testcase_19 AC 327 ms
65,476 KB
testcase_20 AC 292 ms
65,576 KB
testcase_21 AC 322 ms
65,432 KB
testcase_22 AC 325 ms
65,412 KB
testcase_23 AC 326 ms
65,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class B_TwoColorSequence {
    private static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    private static StringTokenizer st;

    private static int readInt() throws IOException {
        while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine());
        return Integer.parseInt(st.nextToken());
    }

    public static void main(String[] args) throws IOException {
        int N = readInt();
        String paint = br.readLine();
        int[] a = new int[N];
        for (int i = 0; i < N; i++) a[i] = readInt()
                * (paint.charAt(i) == 'R' ? -1 : 1);

        long answer = 0;
        long maxPos = Math.max(0, a[0]);
        long minNeg = Math.min(0, a[0]);
        for (int i = 1; i < N; i++) {
            maxPos = Math.max(maxPos + a[i], 0);
            answer = Math.max(answer, maxPos);
            minNeg = Math.min(minNeg + a[i], 0);
            answer = Math.max(answer, -minNeg);
        }

        System.out.println(answer);
    }
}
0