結果

問題 No.1433 Two color sequence
ユーザー paruf4paruf4
提出日時 2021-03-20 00:54:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,628 KB
最終ジャッジ日時 2024-11-19 04:01:10
合計ジャッジ時間 6,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 173 ms
16,944 KB
testcase_04 AC 183 ms
16,816 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 231 ms
36,264 KB
testcase_09 AC 263 ms
42,124 KB
testcase_10 AC 238 ms
38,768 KB
testcase_11 AC 249 ms
39,876 KB
testcase_12 AC 260 ms
41,692 KB
testcase_13 AC 251 ms
42,628 KB
testcase_14 AC 253 ms
40,576 KB
testcase_15 AC 255 ms
38,616 KB
testcase_16 AC 262 ms
37,456 KB
testcase_17 AC 252 ms
40,196 KB
testcase_18 AC 269 ms
38,228 KB
testcase_19 AC 247 ms
40,016 KB
testcase_20 AC 242 ms
36,252 KB
testcase_21 AC 253 ms
41,476 KB
testcase_22 AC 254 ms
41,728 KB
testcase_23 AC 242 ms
35,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(input())
a = list(map(int, input().split()))

rb = [0]*(n+1)
br = [0]*(n+1)
sr, sb = 0, 0

for i in range(n):
    if s[i] == "R":
        sr += a[i]
    else:
        sb += a[i]
    rb[i+1] = sr-sb
    br[i+1] = sb-sr

print(max(max(rb)-min(rb), max(br)-min(br)))
0