結果

問題 No.1433 Two color sequence
ユーザー Suu0313Suu0313
提出日時 2021-03-20 13:59:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,268 KB
最終ジャッジ日時 2024-11-20 23:10:18
合計ジャッジ時間 9,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 348 ms
14,420 KB
testcase_04 AC 351 ms
14,552 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 412 ms
33,268 KB
testcase_09 AC 415 ms
32,476 KB
testcase_10 AC 395 ms
31,768 KB
testcase_11 AC 403 ms
31,784 KB
testcase_12 AC 418 ms
32,484 KB
testcase_13 AC 403 ms
32,472 KB
testcase_14 AC 416 ms
32,728 KB
testcase_15 AC 416 ms
32,728 KB
testcase_16 AC 420 ms
32,724 KB
testcase_17 AC 411 ms
32,724 KB
testcase_18 AC 416 ms
32,600 KB
testcase_19 AC 425 ms
32,856 KB
testcase_20 AC 423 ms
33,184 KB
testcase_21 AC 418 ms
32,604 KB
testcase_22 AC 412 ms
32,724 KB
testcase_23 AC 412 ms
32,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
a = list(map(int, input().split()))
ans = 0
r = 0
b = 0

for i in range(n):
    if s[i] == 'R':
        r = max(a[i], r + a[i])
        b = max(-a[i], b - a[i])
    else:
        r = max(-a[i], r - a[i])
        b = max(a[i], b + a[i])
    ans = max(ans, r, b)

print(ans)
0