結果

問題 No.1433 Two color sequence
ユーザー ntudantuda
提出日時 2024-10-17 22:30:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 102,180 KB
最終ジャッジ日時 2024-10-17 22:30:26
合計ジャッジ時間 3,738 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,280 KB
testcase_01 AC 30 ms
52,756 KB
testcase_02 AC 29 ms
53,212 KB
testcase_03 AC 92 ms
101,224 KB
testcase_04 AC 68 ms
100,684 KB
testcase_05 AC 31 ms
52,628 KB
testcase_06 AC 31 ms
52,424 KB
testcase_07 AC 30 ms
52,164 KB
testcase_08 AC 84 ms
100,520 KB
testcase_09 AC 90 ms
100,248 KB
testcase_10 AC 88 ms
101,884 KB
testcase_11 AC 88 ms
102,180 KB
testcase_12 AC 96 ms
100,524 KB
testcase_13 AC 104 ms
100,240 KB
testcase_14 AC 91 ms
101,352 KB
testcase_15 AC 91 ms
101,216 KB
testcase_16 AC 89 ms
101,096 KB
testcase_17 AC 91 ms
100,444 KB
testcase_18 AC 89 ms
100,448 KB
testcase_19 AC 90 ms
100,976 KB
testcase_20 AC 89 ms
101,084 KB
testcase_21 AC 90 ms
100,824 KB
testcase_22 AC 89 ms
100,692 KB
testcase_23 AC 90 ms
100,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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