結果

問題 No.1433 Two color sequence
ユーザー ks2mks2m
提出日時 2021-03-19 21:52:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 76,300 KB
実行使用メモリ 60,684 KB
最終ジャッジ日時 2024-11-18 22:00:36
合計ジャッジ時間 10,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,860 KB
testcase_01 AC 51 ms
36,684 KB
testcase_02 AC 49 ms
37,004 KB
testcase_03 AC 234 ms
56,636 KB
testcase_04 AC 235 ms
56,648 KB
testcase_05 AC 51 ms
37,052 KB
testcase_06 AC 51 ms
36,556 KB
testcase_07 AC 50 ms
37,132 KB
testcase_08 AC 336 ms
60,404 KB
testcase_09 AC 342 ms
60,036 KB
testcase_10 AC 332 ms
58,816 KB
testcase_11 AC 341 ms
59,984 KB
testcase_12 AC 309 ms
60,008 KB
testcase_13 AC 311 ms
59,868 KB
testcase_14 AC 348 ms
60,120 KB
testcase_15 AC 344 ms
59,764 KB
testcase_16 AC 308 ms
60,244 KB
testcase_17 AC 335 ms
60,104 KB
testcase_18 AC 332 ms
60,196 KB
testcase_19 AC 339 ms
60,164 KB
testcase_20 AC 309 ms
60,684 KB
testcase_21 AC 311 ms
60,148 KB
testcase_22 AC 320 ms
60,012 KB
testcase_23 AC 318 ms
59,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		char[] s = br.readLine().toCharArray();
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long max = 0;
		long min = 0;
		long[] b = new long[n + 1];
		for (int i = 0; i < n; i++) {
			if (s[i] == 'R') {
				b[i + 1] = b[i] + a[i];
			} else {
				b[i + 1] = b[i] - a[i];
			}
			max = Math.max(max, b[i + 1]);
			min = Math.min(min, b[i + 1]);
		}
		System.out.println(max - min);
	}
}
0