結果

問題 No.1433 Two color sequence
ユーザー FromBooskaFromBooska
提出日時 2023-03-02 08:04:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 129,024 KB
最終ジャッジ日時 2024-09-17 05:04:04
合計ジャッジ時間 5,341 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 112 ms
129,024 KB
testcase_04 AC 111 ms
128,640 KB
testcase_05 AC 40 ms
52,156 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 130 ms
126,012 KB
testcase_09 AC 136 ms
126,536 KB
testcase_10 AC 136 ms
125,952 KB
testcase_11 AC 136 ms
126,160 KB
testcase_12 AC 137 ms
126,260 KB
testcase_13 AC 136 ms
126,140 KB
testcase_14 AC 136 ms
126,720 KB
testcase_15 AC 136 ms
126,596 KB
testcase_16 AC 135 ms
126,328 KB
testcase_17 AC 136 ms
126,588 KB
testcase_18 AC 137 ms
126,348 KB
testcase_19 AC 143 ms
126,880 KB
testcase_20 AC 133 ms
126,604 KB
testcase_21 AC 134 ms
126,504 KB
testcase_22 AC 138 ms
126,496 KB
testcase_23 AC 136 ms
126,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 青の得点は正負符号を逆転する
# 累積和、最初は0スタート
# この最大値と最小値の差が答えでいいか

N = int(input())
S = input()
A = list(map(int, input().split()))
A_use = []
for i in range(N):
    if S[i] == 'R':
        A_use.append(A[i])
    else:
        A_use.append(-A[i])

cum = [0]
temp = 0
for i in range(N):
    temp += A_use[i]
    cum.append(temp)
    
ans = max(cum)-min(cum)
print(ans)    
0