結果

問題 No.1433 Two color sequence
ユーザー tyawanmusityawanmusi
提出日時 2020-12-15 19:27:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,484 KB
最終ジャッジ日時 2024-09-20 05:13:00
合計ジャッジ時間 9,701 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 377 ms
14,308 KB
testcase_04 AC 380 ms
14,436 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 412 ms
33,484 KB
testcase_09 AC 430 ms
32,612 KB
testcase_10 AC 414 ms
31,780 KB
testcase_11 AC 421 ms
31,660 KB
testcase_12 AC 434 ms
32,604 KB
testcase_13 AC 435 ms
32,484 KB
testcase_14 AC 444 ms
32,736 KB
testcase_15 AC 443 ms
32,744 KB
testcase_16 AC 446 ms
32,736 KB
testcase_17 AC 444 ms
32,864 KB
testcase_18 AC 463 ms
32,864 KB
testcase_19 AC 442 ms
32,736 KB
testcase_20 AC 443 ms
33,364 KB
testcase_21 AC 441 ms
32,736 KB
testcase_22 AC 439 ms
32,868 KB
testcase_23 AC 431 ms
32,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
a = list(map(int, input().split()))
x = [0]
for i in range(n):
  if s[i] == "R":
    x.append(x[-1]+a[i])
  else:
    x.append(x[-1]-a[i])
ans=0
mi=0
ma=0
for i in range(1, n+1):
  ans = max(ans, x[i]-mi, ma-x[i])
  mi = min(x[i], mi)
  ma = max(x[i], ma)
print(ans)
0