結果

問題 No.1433 Two color sequence
ユーザー marroncastlemarroncastle
提出日時 2021-03-19 22:26:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 117,504 KB
最終ジャッジ日時 2024-11-18 23:13:15
合計ジャッジ時間 4,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,760 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 96 ms
117,472 KB
testcase_04 AC 104 ms
117,504 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 114 ms
113,860 KB
testcase_09 AC 121 ms
114,716 KB
testcase_10 AC 120 ms
113,300 KB
testcase_11 AC 119 ms
113,864 KB
testcase_12 AC 124 ms
114,060 KB
testcase_13 AC 121 ms
114,208 KB
testcase_14 AC 119 ms
114,528 KB
testcase_15 AC 119 ms
114,124 KB
testcase_16 AC 121 ms
114,148 KB
testcase_17 AC 121 ms
114,036 KB
testcase_18 AC 119 ms
114,032 KB
testcase_19 AC 127 ms
114,268 KB
testcase_20 AC 118 ms
114,280 KB
testcase_21 AC 119 ms
114,668 KB
testcase_22 AC 130 ms
114,144 KB
testcase_23 AC 131 ms
114,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
A = list(map(int, input().split()))
for i in range(N):
  if S[i]=='B':
    A[i] *= -1
from itertools import groupby, accumulate, product, permutations, combinations
cum = [0]+list(accumulate(A))
print(max(cum)-min(cum))
0