結果

問題 No.1433 Two color sequence
ユーザー kept1994kept1994
提出日時 2021-08-29 01:19:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 156,868 KB
最終ジャッジ日時 2024-11-22 01:18:26
合計ジャッジ時間 5,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 124 ms
131,996 KB
testcase_04 AC 135 ms
132,224 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 37 ms
52,060 KB
testcase_08 AC 158 ms
156,088 KB
testcase_09 AC 160 ms
155,816 KB
testcase_10 AC 161 ms
155,144 KB
testcase_11 AC 159 ms
155,416 KB
testcase_12 AC 165 ms
155,728 KB
testcase_13 AC 165 ms
155,996 KB
testcase_14 AC 162 ms
155,960 KB
testcase_15 AC 163 ms
156,204 KB
testcase_16 AC 161 ms
156,868 KB
testcase_17 AC 162 ms
156,800 KB
testcase_18 AC 164 ms
156,572 KB
testcase_19 AC 162 ms
156,416 KB
testcase_20 AC 162 ms
156,416 KB
testcase_21 AC 162 ms
156,112 KB
testcase_22 AC 162 ms
156,668 KB
testcase_23 AC 163 ms
156,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    import itertools 
    N = int(input())
    S = input()
    A = list(map(int, input().split()))
    RmB = []
    mRB = []
    for i in range(N):
        if S[i] == "B":
            RmB.append(-A[i])
            mRB.append(A[i])
        else:
            RmB.append(A[i])
            mRB.append(-A[i])
    sRmB = [0] + list(itertools.accumulate(RmB))
    smRB = [0] + list(itertools.accumulate(mRB))
    print(max(abs(max(sRmB) - min(sRmB)), abs(max(smRB) - min(smRB))))
    return

if __name__ == '__main__':
    main()
0