結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー rlangevinrlangevin
提出日時 2023-01-26 23:15:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,108 KB
最終ジャッジ日時 2024-06-27 13:43:23
合計ジャッジ時間 18,911 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
76,368 KB
testcase_01 AC 207 ms
76,484 KB
testcase_02 AC 78 ms
75,468 KB
testcase_03 AC 238 ms
76,324 KB
testcase_04 AC 277 ms
76,940 KB
testcase_05 AC 80 ms
75,576 KB
testcase_06 AC 376 ms
76,652 KB
testcase_07 AC 364 ms
76,276 KB
testcase_08 AC 757 ms
76,480 KB
testcase_09 AC 479 ms
76,628 KB
testcase_10 AC 557 ms
76,800 KB
testcase_11 AC 691 ms
77,108 KB
testcase_12 AC 38 ms
53,312 KB
testcase_13 AC 38 ms
53,380 KB
testcase_14 AC 37 ms
53,532 KB
testcase_15 AC 37 ms
52,648 KB
testcase_16 AC 38 ms
52,816 KB
testcase_17 AC 421 ms
76,740 KB
testcase_18 AC 203 ms
76,672 KB
testcase_19 AC 418 ms
76,224 KB
testcase_20 AC 321 ms
76,340 KB
testcase_21 AC 95 ms
75,908 KB
testcase_22 AC 67 ms
75,408 KB
testcase_23 AC 55 ms
66,324 KB
testcase_24 AC 62 ms
75,456 KB
testcase_25 AC 63 ms
75,140 KB
testcase_26 AC 50 ms
63,748 KB
testcase_27 AC 44 ms
59,160 KB
testcase_28 AC 57 ms
73,624 KB
testcase_29 AC 64 ms
75,384 KB
testcase_30 AC 56 ms
73,236 KB
testcase_31 AC 56 ms
70,160 KB
testcase_32 AC 62 ms
75,152 KB
testcase_33 AC 361 ms
76,608 KB
testcase_34 AC 592 ms
77,060 KB
testcase_35 AC 537 ms
76,808 KB
testcase_36 AC 175 ms
76,452 KB
testcase_37 AC 358 ms
76,408 KB
testcase_38 AC 355 ms
76,256 KB
testcase_39 AC 610 ms
76,720 KB
testcase_40 AC 658 ms
76,844 KB
testcase_41 AC 674 ms
76,468 KB
testcase_42 AC 525 ms
76,436 KB
testcase_43 AC 692 ms
76,640 KB
testcase_44 AC 254 ms
76,468 KB
testcase_45 AC 680 ms
76,624 KB
testcase_46 AC 119 ms
76,052 KB
testcase_47 AC 304 ms
76,436 KB
testcase_48 AC 252 ms
76,204 KB
testcase_49 AC 279 ms
76,232 KB
testcase_50 AC 336 ms
76,484 KB
testcase_51 AC 382 ms
77,000 KB
testcase_52 AC 381 ms
76,808 KB
testcase_53 AC 615 ms
76,372 KB
testcase_54 AC 177 ms
76,392 KB
testcase_55 AC 83 ms
75,996 KB
testcase_56 AC 507 ms
76,384 KB
testcase_57 AC 350 ms
76,648 KB
testcase_58 AC 38 ms
53,880 KB
testcase_59 AC 39 ms
52,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N = int(input())
S = list(input())
A = list(map(int, input().split()))
D = [0] * N
for i, s in enumerate(S):
    if s == "E":
        D[i] = 1
Ac, Dc = [0] * (N + 1), [0] * (N + 1)
for i in range(N):
    Ac[i + 1] = Ac[i] + A[i]
    Dc[i + 1] = Dc[i] + D[i]

Q = int(input())
K = list(map(int, input().split()))
for q in K:
    ans = 0
    for i in range(N + 1):
        ind = bisect_right(Ac, Ac[i] + q)
        ans = max(ans, Dc[ind-1] - Dc[i])
    print(ans)
0