結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー NoneNone
提出日時 2021-10-31 12:29:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 665 ms / 2,000 ms
コード長 812 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 77,088 KB
最終ジャッジ日時 2024-10-08 16:34:28
合計ジャッジ時間 17,064 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
76,032 KB
testcase_01 AC 197 ms
76,576 KB
testcase_02 AC 74 ms
75,264 KB
testcase_03 AC 200 ms
76,796 KB
testcase_04 AC 230 ms
77,040 KB
testcase_05 AC 79 ms
75,860 KB
testcase_06 AC 322 ms
76,288 KB
testcase_07 AC 302 ms
76,800 KB
testcase_08 AC 633 ms
76,832 KB
testcase_09 AC 409 ms
77,056 KB
testcase_10 AC 492 ms
77,088 KB
testcase_11 AC 561 ms
77,056 KB
testcase_12 AC 39 ms
51,712 KB
testcase_13 AC 39 ms
51,456 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 39 ms
51,456 KB
testcase_16 AC 38 ms
51,584 KB
testcase_17 AC 665 ms
75,904 KB
testcase_18 AC 191 ms
76,084 KB
testcase_19 AC 388 ms
76,032 KB
testcase_20 AC 296 ms
76,588 KB
testcase_21 AC 103 ms
75,648 KB
testcase_22 AC 72 ms
75,136 KB
testcase_23 AC 67 ms
68,352 KB
testcase_24 AC 66 ms
75,136 KB
testcase_25 AC 66 ms
75,520 KB
testcase_26 AC 53 ms
63,760 KB
testcase_27 AC 46 ms
58,752 KB
testcase_28 AC 59 ms
72,960 KB
testcase_29 AC 69 ms
75,136 KB
testcase_30 AC 63 ms
73,472 KB
testcase_31 AC 56 ms
70,016 KB
testcase_32 AC 66 ms
75,272 KB
testcase_33 AC 310 ms
76,328 KB
testcase_34 AC 501 ms
76,196 KB
testcase_35 AC 441 ms
76,160 KB
testcase_36 AC 164 ms
76,416 KB
testcase_37 AC 317 ms
76,544 KB
testcase_38 AC 316 ms
76,632 KB
testcase_39 AC 524 ms
76,780 KB
testcase_40 AC 541 ms
76,204 KB
testcase_41 AC 544 ms
77,040 KB
testcase_42 AC 436 ms
76,288 KB
testcase_43 AC 561 ms
76,996 KB
testcase_44 AC 242 ms
76,672 KB
testcase_45 AC 567 ms
76,976 KB
testcase_46 AC 124 ms
76,288 KB
testcase_47 AC 269 ms
76,416 KB
testcase_48 AC 226 ms
75,928 KB
testcase_49 AC 242 ms
76,544 KB
testcase_50 AC 288 ms
76,664 KB
testcase_51 AC 340 ms
77,056 KB
testcase_52 AC 323 ms
76,304 KB
testcase_53 AC 490 ms
76,540 KB
testcase_54 AC 167 ms
76,288 KB
testcase_55 AC 88 ms
76,288 KB
testcase_56 AC 405 ms
76,648 KB
testcase_57 AC 293 ms
76,324 KB
testcase_58 AC 41 ms
51,840 KB
testcase_59 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def binary_search_int(ok, ng, test):
    """
    :param ok: solve(x) = True を必ず満たす点
    :param ng: solve(x) = False を必ず満たす点
    """
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if test(mid):
            ok = mid
        else:
            ng = mid
    return ok

##############################################################

import sys
input = sys.stdin.readline



N=int(input())
S=input().rstrip()
A=list(map(int, input().split()))
Q=int(input())
K=list(map(int, input().split()))
SS=[0]
for s in S:
    SS.append(SS[-1]+(s=="E"))
SA=[0]
for a in A:
    SA.append(SA[-1]+a)
for k in K:
    res=0
    for i in range(N):
        def test(x):
            return SA[x]-SA[i]<=k
        r=binary_search_int(i,N+1,test)
        res=max(SS[r]-SS[i],res)
    print(res)
0