結果

問題 No.1433 Two color sequence
ユーザー pluto77pluto77
提出日時 2021-07-17 09:18:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,452 KB
最終ジャッジ日時 2024-07-06 20:47:12
合計ジャッジ時間 9,533 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
10,752 KB
testcase_01 AC 24 ms
10,880 KB
testcase_02 AC 24 ms
10,880 KB
testcase_03 AC 336 ms
14,544 KB
testcase_04 AC 323 ms
14,676 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 23 ms
10,752 KB
testcase_08 AC 367 ms
33,452 KB
testcase_09 AC 389 ms
32,600 KB
testcase_10 AC 372 ms
31,764 KB
testcase_11 AC 381 ms
31,908 KB
testcase_12 AC 393 ms
32,588 KB
testcase_13 AC 387 ms
32,600 KB
testcase_14 AC 412 ms
32,848 KB
testcase_15 AC 410 ms
32,816 KB
testcase_16 AC 409 ms
32,816 KB
testcase_17 AC 394 ms
32,980 KB
testcase_18 AC 420 ms
32,840 KB
testcase_19 AC 399 ms
32,852 KB
testcase_20 AC 390 ms
33,312 KB
testcase_21 AC 394 ms
32,980 KB
testcase_22 AC 391 ms
32,852 KB
testcase_23 AC 393 ms
32,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1433
n=int(input())
s=input()
a=list(map(int,input().split()))
res=0
MAX,MIN=0,0
for i in range(n):
 if s[i]=='R':
  x=a[i]
 else:
  x=-a[i]
 MAX=max(MAX+x,x)
 MIN=min(MIN+x,x)
 res=max(res,abs(MAX),abs(MIN))
print(res)
0