結果

問題 No.1433 Two color sequence
ユーザー mesame3993mesame3993
提出日時 2021-12-09 00:59:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 100,208 KB
最終ジャッジ日時 2024-07-16 11:54:21
合計ジャッジ時間 4,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,456 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 AC 35 ms
52,408 KB
testcase_03 AC 81 ms
100,208 KB
testcase_04 AC 78 ms
99,456 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 99 ms
99,120 KB
testcase_09 AC 106 ms
99,304 KB
testcase_10 AC 104 ms
99,840 KB
testcase_11 AC 106 ms
100,096 KB
testcase_12 AC 105 ms
98,792 KB
testcase_13 AC 106 ms
98,848 KB
testcase_14 AC 106 ms
99,284 KB
testcase_15 AC 104 ms
98,884 KB
testcase_16 AC 104 ms
99,016 KB
testcase_17 AC 107 ms
99,136 KB
testcase_18 AC 107 ms
98,992 KB
testcase_19 AC 107 ms
99,128 KB
testcase_20 AC 106 ms
99,400 KB
testcase_21 AC 107 ms
99,012 KB
testcase_22 AC 106 ms
99,136 KB
testcase_23 AC 106 ms
98,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from sys import stdin
  readline = stdin.readline
  n= int(readline())
  s = readline()[:-1]
  A = list(map(int, readline().split()))
  now = 0
  ans = 0
  maxv, minv = 0, 0
  for i in range(n):
    if s[i] == 'B':
      A[i] *= -1
  for i in range(n):
    now += A[i]
    ans = max(ans, abs(now - minv))
    ans = max(ans, abs(now - maxv))
    minv = min(minv, now)
    maxv = max(maxv, now)
  print(ans)
  
if __name__ == "__main__":
  main() 
0