結果
| 問題 |
No.1433 Two color sequence
|
| コンテスト | |
| ユーザー |
sepa38
|
| 提出日時 | 2022-12-15 13:36:47 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 118 ms / 2,000 ms |
| コード長 | 201 bytes |
| コンパイル時間 | 230 ms |
| コンパイル使用メモリ | 82,508 KB |
| 実行使用メモリ | 115,444 KB |
| 最終ジャッジ日時 | 2024-11-14 04:02:06 |
| 合計ジャッジ時間 | 4,678 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
n = int(input())
s = input()
a = list(map(int, input().split()))
ls = [0]
for i in range(n):
ls.append(ls[-1])
if s[i] == "R":
ls[-1] += a[i]
else:
ls[-1] -= a[i]
print(max(ls) - min(ls))
sepa38