結果

問題 No.1433 Two color sequence
ユーザー roarisroaris
提出日時 2021-03-19 21:53:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 102,012 KB
最終ジャッジ日時 2024-11-18 22:02:15
合計ジャッジ時間 3,801 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,040 KB
testcase_01 AC 43 ms
54,088 KB
testcase_02 AC 43 ms
54,488 KB
testcase_03 AC 83 ms
100,472 KB
testcase_04 AC 83 ms
101,080 KB
testcase_05 AC 42 ms
54,608 KB
testcase_06 AC 42 ms
54,496 KB
testcase_07 AC 42 ms
54,068 KB
testcase_08 AC 105 ms
102,012 KB
testcase_09 AC 115 ms
101,060 KB
testcase_10 AC 113 ms
99,060 KB
testcase_11 AC 113 ms
98,880 KB
testcase_12 AC 112 ms
100,832 KB
testcase_13 AC 112 ms
100,956 KB
testcase_14 AC 111 ms
100,928 KB
testcase_15 AC 110 ms
100,932 KB
testcase_16 AC 109 ms
100,820 KB
testcase_17 AC 111 ms
100,676 KB
testcase_18 AC 110 ms
100,668 KB
testcase_19 AC 115 ms
101,192 KB
testcase_20 AC 112 ms
100,952 KB
testcase_21 AC 113 ms
100,976 KB
testcase_22 AC 114 ms
100,924 KB
testcase_23 AC 111 ms
100,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
S = input()[:-1]
a = list(map(int, input().split()))
m, M = 0, 0
now = 0
ans = -10**18

for i in range(N):
    if S[i]=='R':
        now += a[i]
    else:
        now -= a[i]
    
    ans = max(ans, abs(now-m), abs(M-now))
    m = min(m, now)
    M = max(M, now)

print(ans)
0