結果

問題 No.1433 Two color sequence
ユーザー Akijin_007Akijin_007
提出日時 2023-05-11 18:49:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 752 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,156 KB
最終ジャッジ日時 2024-05-05 16:32:46
合計ジャッジ時間 4,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 35 ms
51,692 KB
testcase_03 AC 78 ms
100,352 KB
testcase_04 AC 79 ms
99,936 KB
testcase_05 AC 35 ms
51,864 KB
testcase_06 AC 35 ms
51,872 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 96 ms
100,520 KB
testcase_09 AC 106 ms
100,656 KB
testcase_10 AC 105 ms
102,156 KB
testcase_11 AC 101 ms
101,888 KB
testcase_12 AC 104 ms
100,516 KB
testcase_13 AC 103 ms
100,404 KB
testcase_14 AC 101 ms
100,572 KB
testcase_15 AC 102 ms
100,724 KB
testcase_16 AC 101 ms
100,716 KB
testcase_17 AC 107 ms
100,312 KB
testcase_18 AC 106 ms
100,848 KB
testcase_19 AC 105 ms
100,976 KB
testcase_20 AC 105 ms
100,852 KB
testcase_21 AC 105 ms
100,712 KB
testcase_22 AC 106 ms
100,332 KB
testcase_23 AC 104 ms
100,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())
S = input()
a = list(map(int, input().split()))

s = [0] * (N+1)
for i in range(N):
    if S[i] == "R":
        s[i+1] = s[i] + a[i]
    else:
        s[i+1] = s[i] - a[i]

print(max(s)-min(s))
0