結果

問題 No.1433 Two color sequence
ユーザー 小野寺健小野寺健
提出日時 2021-05-19 12:51:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,932 KB
最終ジャッジ日時 2024-10-09 17:01:10
合計ジャッジ時間 9,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 392 ms
14,420 KB
testcase_04 AC 376 ms
14,424 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 433 ms
32,876 KB
testcase_09 AC 457 ms
32,932 KB
testcase_10 AC 440 ms
31,772 KB
testcase_11 AC 449 ms
31,916 KB
testcase_12 AC 446 ms
32,604 KB
testcase_13 AC 452 ms
32,476 KB
testcase_14 AC 458 ms
32,732 KB
testcase_15 AC 462 ms
32,864 KB
testcase_16 AC 461 ms
32,856 KB
testcase_17 AC 466 ms
32,724 KB
testcase_18 AC 454 ms
32,732 KB
testcase_19 AC 450 ms
32,728 KB
testcase_20 AC 455 ms
32,852 KB
testcase_21 AC 454 ms
32,856 KB
testcase_22 AC 461 ms
32,732 KB
testcase_23 AC 460 ms
32,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

res = 0
maxs, mins = 0, 0
for i in range(N):
    v = A[i] if S[i] == 'R' else -A[i]
    maxs = max(maxs + v, v)
    mins = min(mins + v, v)
    res = max(res, abs(maxs), abs(mins))
        
print(res)
0