結果

問題 No.1433 Two color sequence
ユーザー hir355hir355
提出日時 2021-03-19 21:49:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-11-18 21:50:25
合計ジャッジ時間 3,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 86 ms
101,888 KB
testcase_04 AC 89 ms
101,760 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
51,584 KB
testcase_08 AC 107 ms
100,520 KB
testcase_09 AC 117 ms
100,724 KB
testcase_10 AC 112 ms
101,868 KB
testcase_11 AC 115 ms
101,888 KB
testcase_12 AC 117 ms
100,204 KB
testcase_13 AC 116 ms
100,356 KB
testcase_14 AC 114 ms
100,700 KB
testcase_15 AC 114 ms
100,800 KB
testcase_16 AC 114 ms
100,692 KB
testcase_17 AC 116 ms
100,420 KB
testcase_18 AC 112 ms
100,936 KB
testcase_19 AC 114 ms
101,200 KB
testcase_20 AC 111 ms
100,816 KB
testcase_21 AC 113 ms
100,952 KB
testcase_22 AC 113 ms
100,688 KB
testcase_23 AC 113 ms
100,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
a = list(map(int, input().split()))
b = [0] * (n + 1)
for i in range(n):
    if s[i] == 'R':
        b[i + 1] = b[i] + a[i]
    else:
        b[i + 1] = b[i] - a[i]
ans = 0
m = 0
for i in range(n):
    m = min(m, b[i + 1])
    ans = max(ans, b[i + 1] - m)
m = 0
for i in range(n):
    m = max(m, b[i + 1])
    ans = max(ans, m - b[i + 1])
print(ans)
0