結果

問題 No.1433 Two color sequence
ユーザー yuusanlondonyuusanlondon
提出日時 2021-03-19 21:48:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-11-18 21:49:35
合計ジャッジ時間 3,427 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 72 ms
98,432 KB
testcase_04 AC 71 ms
98,432 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 98 ms
100,544 KB
testcase_09 AC 105 ms
100,300 KB
testcase_10 AC 99 ms
102,016 KB
testcase_11 AC 103 ms
102,144 KB
testcase_12 AC 104 ms
99,840 KB
testcase_13 AC 102 ms
100,464 KB
testcase_14 AC 100 ms
100,052 KB
testcase_15 AC 99 ms
100,096 KB
testcase_16 AC 103 ms
100,096 KB
testcase_17 AC 101 ms
100,356 KB
testcase_18 AC 101 ms
100,224 KB
testcase_19 AC 99 ms
100,352 KB
testcase_20 AC 99 ms
99,968 KB
testcase_21 AC 100 ms
99,968 KB
testcase_22 AC 100 ms
99,968 KB
testcase_23 AC 99 ms
100,096 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