結果

問題 No.1433 Two color sequence
ユーザー あかりきあかりき
提出日時 2021-03-20 01:47:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 171,384 KB
最終ジャッジ日時 2024-11-19 05:34:00
合計ジャッジ時間 5,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,556 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
52,824 KB
testcase_03 AC 150 ms
163,856 KB
testcase_04 AC 146 ms
164,040 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 38 ms
52,160 KB
testcase_07 AC 39 ms
52,768 KB
testcase_08 AC 153 ms
171,384 KB
testcase_09 AC 161 ms
171,020 KB
testcase_10 AC 160 ms
169,152 KB
testcase_11 AC 159 ms
170,044 KB
testcase_12 AC 164 ms
170,528 KB
testcase_13 AC 163 ms
170,804 KB
testcase_14 AC 160 ms
171,060 KB
testcase_15 AC 161 ms
170,604 KB
testcase_16 AC 159 ms
170,820 KB
testcase_17 AC 163 ms
170,784 KB
testcase_18 AC 164 ms
170,804 KB
testcase_19 AC 164 ms
170,948 KB
testcase_20 AC 163 ms
170,812 KB
testcase_21 AC 163 ms
170,304 KB
testcase_22 AC 162 ms
170,692 KB
testcase_23 AC 164 ms
171,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

L1=[]
L2=[]
for i in range(n):
  if s[i]=='R':
    L1.append(a[i])
    L2.append(-a[i])
  else:
    L1.append(-a[i])
    L2.append(a[i])

ans1=[]
ans2=[]
ct1=0
ct2=0
for i in range(n):
  ct1+=L1[i]
  if ct1<0:
    ct1=0
  ans1.append(ct1)
  ct2+=L2[i]
  if ct2<0:
    ct2=0
  ans2.append(ct2)

print(max(ans1+ans2))
0