結果

問題 No.1433 Two color sequence
ユーザー flippergoflippergo
提出日時 2024-10-29 15:54:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 103,180 KB
最終ジャッジ日時 2024-10-29 15:54:43
合計ジャッジ時間 5,061 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,336 KB
testcase_01 AC 34 ms
51,624 KB
testcase_02 AC 36 ms
51,692 KB
testcase_03 AC 81 ms
103,168 KB
testcase_04 AC 80 ms
103,180 KB
testcase_05 AC 36 ms
52,424 KB
testcase_06 AC 36 ms
53,000 KB
testcase_07 AC 35 ms
53,376 KB
testcase_08 AC 100 ms
102,364 KB
testcase_09 AC 119 ms
102,208 KB
testcase_10 AC 104 ms
102,300 KB
testcase_11 AC 104 ms
102,196 KB
testcase_12 AC 106 ms
102,452 KB
testcase_13 AC 106 ms
102,604 KB
testcase_14 AC 105 ms
102,380 KB
testcase_15 AC 104 ms
102,528 KB
testcase_16 AC 105 ms
102,908 KB
testcase_17 AC 104 ms
102,572 KB
testcase_18 AC 104 ms
102,280 KB
testcase_19 AC 107 ms
102,124 KB
testcase_20 AC 104 ms
102,256 KB
testcase_21 AC 104 ms
102,372 KB
testcase_22 AC 105 ms
102,400 KB
testcase_23 AC 101 ms
102,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input().strip()
A = list(map(int,input().split()))
for i in range(N):
    if S[i]=="R":
        A[i] = -A[i]
A = [0]+A
B = [0]*(N+1)
for i in range(1,N+1):
    B[i] = B[i-1]+A[i]
bmax = max(B)
bmin = min(B)
print(bmax-bmin)
0