結果

問題 No.1433 Two color sequence
ユーザー kohei2019kohei2019
提出日時 2022-05-20 00:15:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 129,644 KB
最終ジャッジ日時 2024-09-19 05:06:12
合計ジャッジ時間 4,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,368 KB
testcase_01 AC 34 ms
51,904 KB
testcase_02 AC 32 ms
53,008 KB
testcase_03 AC 94 ms
129,100 KB
testcase_04 AC 92 ms
129,644 KB
testcase_05 AC 33 ms
52,276 KB
testcase_06 AC 33 ms
52,376 KB
testcase_07 AC 34 ms
52,016 KB
testcase_08 AC 112 ms
126,780 KB
testcase_09 AC 116 ms
126,396 KB
testcase_10 AC 116 ms
125,692 KB
testcase_11 AC 115 ms
125,760 KB
testcase_12 AC 120 ms
126,380 KB
testcase_13 AC 120 ms
126,404 KB
testcase_14 AC 116 ms
127,208 KB
testcase_15 AC 114 ms
126,756 KB
testcase_16 AC 116 ms
126,956 KB
testcase_17 AC 118 ms
126,388 KB
testcase_18 AC 116 ms
126,640 KB
testcase_19 AC 122 ms
126,968 KB
testcase_20 AC 118 ms
126,340 KB
testcase_21 AC 120 ms
126,832 KB
testcase_22 AC 118 ms
126,980 KB
testcase_23 AC 115 ms
126,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
lsa = list(map(int,input().split()))
lsB = []
lsR = []

ll = []
for i in range(N):
    if S[i] == 'R':
        ll.append(lsa[i])
    else:
        ll.append(-lsa[i])

lssum = [0]
for i in range(N):
    lssum.append(lssum[-1]+ll[i])
print(max(lssum)-min(lssum))
0