結果

問題 No.1433 Two color sequence
ユーザー 👑 rin204rin204
提出日時 2021-12-13 01:51:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-07-21 15:28:25
合計ジャッジ時間 4,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 74 ms
99,712 KB
testcase_04 AC 71 ms
98,944 KB
testcase_05 AC 33 ms
51,840 KB
testcase_06 AC 34 ms
51,840 KB
testcase_07 AC 34 ms
51,328 KB
testcase_08 AC 94 ms
100,352 KB
testcase_09 AC 98 ms
99,968 KB
testcase_10 AC 97 ms
101,632 KB
testcase_11 AC 98 ms
102,016 KB
testcase_12 AC 102 ms
100,020 KB
testcase_13 AC 100 ms
99,840 KB
testcase_14 AC 102 ms
100,096 KB
testcase_15 AC 98 ms
100,224 KB
testcase_16 AC 99 ms
99,968 KB
testcase_17 AC 101 ms
100,096 KB
testcase_18 AC 98 ms
99,712 KB
testcase_19 AC 98 ms
99,840 KB
testcase_20 AC 101 ms
100,352 KB
testcase_21 AC 102 ms
99,840 KB
testcase_22 AC 99 ms
100,096 KB
testcase_23 AC 99 ms
99,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
A = list(map(int, input().split()))
for i in range(n):
    if S[i] == "R":
        A[i] *= -1

tot = 0
max_ = 0
min_ = 0
ans = 0
for a in A:
    tot += a
    min_ = min(min_, tot)
    max_ = max(max_, tot)
    ans = max(ans, max_ - tot, tot - min_)
print(ans)
0