結果

問題 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  
実行時間 512 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,980 KB
最終ジャッジ日時 2024-11-27 02:31:40
合計ジャッジ時間 11,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 430 ms
14,552 KB
testcase_04 AC 427 ms
14,424 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 444 ms
33,196 KB
testcase_09 AC 476 ms
33,856 KB
testcase_10 AC 478 ms
32,548 KB
testcase_11 AC 468 ms
31,656 KB
testcase_12 AC 480 ms
32,804 KB
testcase_13 AC 480 ms
33,980 KB
testcase_14 AC 490 ms
32,728 KB
testcase_15 AC 502 ms
32,728 KB
testcase_16 AC 512 ms
32,852 KB
testcase_17 AC 505 ms
32,856 KB
testcase_18 AC 498 ms
32,844 KB
testcase_19 AC 505 ms
32,856 KB
testcase_20 AC 505 ms
33,444 KB
testcase_21 AC 507 ms
32,852 KB
testcase_22 AC 494 ms
32,980 KB
testcase_23 AC 507 ms
32,732 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