結果

問題 No.1433 Two color sequence
ユーザー Akijin_007Akijin_007
提出日時 2023-05-11 18:49:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-11-27 15:33:16
合計ジャッジ時間 4,651 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 40 ms
51,200 KB
testcase_03 AC 82 ms
100,608 KB
testcase_04 AC 79 ms
99,968 KB
testcase_05 AC 36 ms
51,584 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 34 ms
51,200 KB
testcase_08 AC 100 ms
100,268 KB
testcase_09 AC 107 ms
100,016 KB
testcase_10 AC 112 ms
101,888 KB
testcase_11 AC 111 ms
101,888 KB
testcase_12 AC 114 ms
100,388 KB
testcase_13 AC 113 ms
100,268 KB
testcase_14 AC 111 ms
100,712 KB
testcase_15 AC 112 ms
100,208 KB
testcase_16 AC 115 ms
100,968 KB
testcase_17 AC 108 ms
99,956 KB
testcase_18 AC 105 ms
100,976 KB
testcase_19 AC 106 ms
100,964 KB
testcase_20 AC 105 ms
100,340 KB
testcase_21 AC 104 ms
100,332 KB
testcase_22 AC 107 ms
100,972 KB
testcase_23 AC 103 ms
100,076 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