結果

問題 No.1433 Two color sequence
ユーザー tyawanmusi
提出日時 2020-12-15 21:15:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,356 KB
最終ジャッジ日時 2024-09-20 05:12:50
合計ジャッジ時間 9,030 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 11 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
a = list(map(int, input().split()))
x = [0]
for i in range(n):
  if s[i] == "R":
    x.append(x[-1]+a[i])
  else:
    x.append(x[-1]-a[i])
ans=0
mi=0
for i in range(1, n+1):
  ans = max(ans, x[i]-mi)
  mi = min(x[i], mi)
print(ans)
0