結果

問題 No.1433 Two color sequence
ユーザー y61mpnly61mpnl
提出日時 2021-03-25 14:24:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,988 KB
最終ジャッジ日時 2024-05-05 07:44:11
合計ジャッジ時間 10,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 435 ms
14,492 KB
testcase_04 AC 393 ms
14,548 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 453 ms
33,456 KB
testcase_09 AC 474 ms
33,988 KB
testcase_10 AC 441 ms
32,676 KB
testcase_11 AC 461 ms
31,788 KB
testcase_12 AC 465 ms
32,800 KB
testcase_13 AC 471 ms
33,984 KB
testcase_14 AC 467 ms
32,980 KB
testcase_15 AC 466 ms
32,852 KB
testcase_16 AC 481 ms
32,856 KB
testcase_17 AC 474 ms
32,852 KB
testcase_18 AC 474 ms
32,728 KB
testcase_19 AC 498 ms
32,860 KB
testcase_20 AC 476 ms
33,196 KB
testcase_21 AC 488 ms
32,856 KB
testcase_22 AC 480 ms
32,852 KB
testcase_23 AC 477 ms
32,872 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

mn, mx, sm = 0, 0, 0
minans, maxans = 0, 0
for i in range(n):
	sm += a[i]
	mn = min(mn, sm)
	mx = max(mx, sm)
	minans = min(minans, mn-mx)
	maxans = max(maxans, mx-mn)
print(max(maxans, -minans))
0