結果

問題 No.1433 Two color sequence
ユーザー O2MTO2MT
提出日時 2021-03-20 18:31:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 117,660 KB
最終ジャッジ日時 2024-11-21 07:18:20
合計ジャッジ時間 3,850 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,004 KB
testcase_01 AC 41 ms
51,948 KB
testcase_02 AC 40 ms
52,928 KB
testcase_03 AC 100 ms
117,620 KB
testcase_04 AC 97 ms
117,660 KB
testcase_05 AC 37 ms
53,012 KB
testcase_06 AC 39 ms
52,616 KB
testcase_07 AC 39 ms
52,608 KB
testcase_08 AC 120 ms
112,700 KB
testcase_09 AC 122 ms
112,356 KB
testcase_10 AC 123 ms
112,012 KB
testcase_11 AC 122 ms
112,704 KB
testcase_12 AC 120 ms
112,488 KB
testcase_13 AC 121 ms
112,752 KB
testcase_14 AC 121 ms
112,600 KB
testcase_15 AC 121 ms
113,084 KB
testcase_16 AC 121 ms
113,228 KB
testcase_17 AC 123 ms
112,952 KB
testcase_18 AC 122 ms
112,844 KB
testcase_19 AC 120 ms
112,844 KB
testcase_20 AC 121 ms
112,552 KB
testcase_21 AC 122 ms
112,860 KB
testcase_22 AC 124 ms
112,724 KB
testcase_23 AC 121 ms
112,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
N = int(input())
S = str(input())
A = list(map(int,input().split()))
for i in range(N):
    if S[i] == 'B':
        A[i] = -A[i]
AC = list(accumulate(A))

mi,ma = min(AC),max(AC)
mii,maa = mi,ma
for i in range(N):
    mi = min(mi,mii-AC[i])
    ma = max(ma,maa-AC[i])
ans = max(abs(mi),ma)
print(ans)
0