結果

問題 No.1433 Two color sequence
ユーザー terry_u16terry_u16
提出日時 2021-03-19 22:15:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 102,184 KB
最終ジャッジ日時 2024-11-18 22:51:37
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,060 KB
testcase_01 AC 41 ms
52,128 KB
testcase_02 AC 40 ms
53,416 KB
testcase_03 AC 87 ms
100,316 KB
testcase_04 AC 85 ms
100,724 KB
testcase_05 AC 39 ms
51,824 KB
testcase_06 AC 39 ms
52,884 KB
testcase_07 AC 39 ms
51,752 KB
testcase_08 AC 105 ms
100,356 KB
testcase_09 AC 121 ms
100,300 KB
testcase_10 AC 121 ms
102,184 KB
testcase_11 AC 119 ms
102,024 KB
testcase_12 AC 119 ms
100,288 KB
testcase_13 AC 118 ms
99,952 KB
testcase_14 AC 115 ms
100,248 KB
testcase_15 AC 113 ms
100,204 KB
testcase_16 AC 114 ms
100,212 KB
testcase_17 AC 117 ms
100,288 KB
testcase_18 AC 117 ms
100,480 KB
testcase_19 AC 117 ms
100,332 KB
testcase_20 AC 114 ms
99,984 KB
testcase_21 AC 118 ms
100,428 KB
testcase_22 AC 118 ms
100,056 KB
testcase_23 AC 116 ms
100,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
a = list(map(int, input().split()))

max_score = 0

for sign_r in range(-1, 2, 2):
    sign_b = -sign_r
    score = 0
    for i in range(0, n):
        if s[i] == 'R':
            score += sign_r * a[i]
        else:
            score += sign_b * a[i]
        max_score = max(max_score, score)

        if score < 0:
            score = 0

print(max_score)
0