結果

問題 No.1433 Two color sequence
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-03-19 21:53:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 101,976 KB
最終ジャッジ日時 2024-11-18 22:02:19
合計ジャッジ時間 3,568 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,724 KB
testcase_01 AC 44 ms
52,224 KB
testcase_02 AC 43 ms
52,208 KB
testcase_03 AC 85 ms
101,976 KB
testcase_04 AC 84 ms
100,364 KB
testcase_05 AC 39 ms
53,660 KB
testcase_06 AC 38 ms
52,128 KB
testcase_07 AC 39 ms
51,824 KB
testcase_08 AC 101 ms
98,868 KB
testcase_09 AC 118 ms
99,300 KB
testcase_10 AC 115 ms
100,068 KB
testcase_11 AC 115 ms
100,264 KB
testcase_12 AC 115 ms
99,032 KB
testcase_13 AC 114 ms
99,192 KB
testcase_14 AC 116 ms
99,276 KB
testcase_15 AC 112 ms
99,272 KB
testcase_16 AC 111 ms
99,120 KB
testcase_17 AC 114 ms
99,160 KB
testcase_18 AC 115 ms
99,276 KB
testcase_19 AC 115 ms
99,264 KB
testcase_20 AC 110 ms
99,532 KB
testcase_21 AC 113 ms
99,276 KB
testcase_22 AC 117 ms
99,080 KB
testcase_23 AC 112 ms
99,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

Rの総和
Bの総和

で、R,B 片方が正・もう片方が負の寄与


"""

import sys
from sys import stdin

N = int(stdin.readline())
n = N
S = stdin.readline()[:-1]

a = list(map(int,stdin.readline().split()))

nmin = 0
now = 0
ans = 0

for i in range(n):

    if S[i] == "R":
        now += a[i]
    else:
        now -= a[i]

    ans = max(ans , now - nmin)
    nmin = min(nmin,now)

nmin = 0
now = 0
    
for i in range(n):

    if S[i] == "R":
        now -= a[i]
    else:
        now += a[i]

    ans = max(ans , now - nmin)
    nmin = min(nmin,now)

print (ans)
0