結果

問題 No.1433 Two color sequence
ユーザー yuusanlondonyuusanlondon
提出日時 2021-03-19 21:48:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-04-29 16:31:42
合計ジャッジ時間 3,719 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 80 ms
98,432 KB
testcase_04 AC 80 ms
98,816 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 104 ms
100,480 KB
testcase_09 AC 115 ms
100,224 KB
testcase_10 AC 109 ms
102,016 KB
testcase_11 AC 114 ms
102,016 KB
testcase_12 AC 113 ms
99,968 KB
testcase_13 AC 112 ms
100,224 KB
testcase_14 AC 110 ms
100,224 KB
testcase_15 AC 111 ms
99,968 KB
testcase_16 AC 109 ms
100,096 KB
testcase_17 AC 114 ms
99,840 KB
testcase_18 AC 109 ms
99,712 KB
testcase_19 AC 113 ms
99,968 KB
testcase_20 AC 111 ms
99,712 KB
testcase_21 AC 113 ms
99,968 KB
testcase_22 AC 109 ms
99,968 KB
testcase_23 AC 113 ms
100,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()
a=list(map(int,input().split()))
maxi=0
mini=0
curr=0
for i in range(n):
  if s[i]=='R':
    curr+=a[i]
  else:
    curr-=a[i]
  maxi=max(maxi,curr)
  mini=min(mini,curr)
print(maxi-mini)
0