結果

問題 No.1433 Two color sequence
ユーザー mesame3993mesame3993
提出日時 2021-12-09 01:06:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 722 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 106,516 KB
最終ジャッジ日時 2024-07-16 11:56:57
合計ジャッジ時間 13,944 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,196 KB
testcase_01 AC 44 ms
52,460 KB
testcase_02 AC 40 ms
53,620 KB
testcase_03 AC 560 ms
103,940 KB
testcase_04 AC 534 ms
103,832 KB
testcase_05 AC 38 ms
53,264 KB
testcase_06 AC 38 ms
52,484 KB
testcase_07 AC 38 ms
53,872 KB
testcase_08 AC 675 ms
106,504 KB
testcase_09 AC 669 ms
106,516 KB
testcase_10 AC 664 ms
105,232 KB
testcase_11 AC 657 ms
105,652 KB
testcase_12 AC 702 ms
106,140 KB
testcase_13 AC 680 ms
106,120 KB
testcase_14 AC 677 ms
106,096 KB
testcase_15 AC 670 ms
106,416 KB
testcase_16 AC 684 ms
106,100 KB
testcase_17 AC 695 ms
106,372 KB
testcase_18 AC 682 ms
106,228 KB
testcase_19 AC 690 ms
106,220 KB
testcase_20 AC 676 ms
106,212 KB
testcase_21 AC 684 ms
106,100 KB
testcase_22 AC 722 ms
106,208 KB
testcase_23 AC 681 ms
106,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  import sys
  readline = sys.stdin.readline
  def error(*args, end='\n'):
    print(*args, end=end, file=sys.stderr)
  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
  error(A)
  for i in range(n):
    now += A[i]
    ans = max(ans, abs(now - minv))
    ans = max(ans, abs(now - maxv))
    error(ans, now, minv, maxv)
    minv = min(minv, now)
    maxv = max(maxv, now)
  print(ans)
  
if __name__ == "__main__":
  main() 
0