結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー 👑 KazunKazun
提出日時 2021-02-07 19:14:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 919 ms / 2,000 ms
コード長 1,030 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 93,520 KB
最終ジャッジ日時 2024-07-04 12:14:15
合計ジャッジ時間 14,464 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
76,544 KB
testcase_01 AC 85 ms
78,240 KB
testcase_02 AC 66 ms
77,944 KB
testcase_03 AC 91 ms
80,640 KB
testcase_04 AC 115 ms
84,460 KB
testcase_05 AC 73 ms
80,000 KB
testcase_06 AC 213 ms
80,672 KB
testcase_07 AC 209 ms
82,280 KB
testcase_08 AC 501 ms
93,184 KB
testcase_09 AC 292 ms
86,400 KB
testcase_10 AC 346 ms
86,196 KB
testcase_11 AC 469 ms
90,880 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 37 ms
52,096 KB
testcase_16 AC 40 ms
52,224 KB
testcase_17 AC 919 ms
93,440 KB
testcase_18 AC 248 ms
85,632 KB
testcase_19 AC 414 ms
80,680 KB
testcase_20 AC 343 ms
89,472 KB
testcase_21 AC 91 ms
76,576 KB
testcase_22 AC 72 ms
79,132 KB
testcase_23 AC 55 ms
65,664 KB
testcase_24 AC 61 ms
72,576 KB
testcase_25 AC 56 ms
70,144 KB
testcase_26 AC 52 ms
62,592 KB
testcase_27 AC 41 ms
58,880 KB
testcase_28 AC 55 ms
67,584 KB
testcase_29 AC 62 ms
73,344 KB
testcase_30 AC 56 ms
68,224 KB
testcase_31 AC 57 ms
67,200 KB
testcase_32 AC 56 ms
71,040 KB
testcase_33 AC 272 ms
91,008 KB
testcase_34 AC 363 ms
87,052 KB
testcase_35 AC 331 ms
87,680 KB
testcase_36 AC 127 ms
81,460 KB
testcase_37 AC 272 ms
89,088 KB
testcase_38 AC 218 ms
81,352 KB
testcase_39 AC 397 ms
87,688 KB
testcase_40 AC 440 ms
88,192 KB
testcase_41 AC 418 ms
88,588 KB
testcase_42 AC 360 ms
89,472 KB
testcase_43 AC 426 ms
88,448 KB
testcase_44 AC 148 ms
78,216 KB
testcase_45 AC 468 ms
93,056 KB
testcase_46 AC 94 ms
76,800 KB
testcase_47 AC 173 ms
79,872 KB
testcase_48 AC 201 ms
85,888 KB
testcase_49 AC 168 ms
80,108 KB
testcase_50 AC 244 ms
85,752 KB
testcase_51 AC 248 ms
84,080 KB
testcase_52 AC 250 ms
83,568 KB
testcase_53 AC 415 ms
93,520 KB
testcase_54 AC 141 ms
83,196 KB
testcase_55 AC 73 ms
76,768 KB
testcase_56 AC 326 ms
87,528 KB
testcase_57 AC 215 ms
82,424 KB
testcase_58 AC 38 ms
51,968 KB
testcase_59 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Binary_Search_Small_Count(A,x,equal=False,sort=False):
    """2分探索によって,x未満の要素の個数を調べる.

    A:リスト
    x:調べる要素
    sort:ソートをする必要があるかどうか(Trueで必要)
    equal:Trueのときはx"未満"がx"以下"になる
    """
    if sort:
        A.sort()

    if A[0]>x or ((not equal) and A[0]==x):
        return 0

    L,R=0,len(A)
    while R-L>1:
        C=L+(R-L)//2
        if A[C]<x or (equal and A[C]==x):
            L=C
        else:
            R=C

    return L+1
#================================================
N=int(input())
S=input()
A=list(map(int,input().split()))
Q=int(input())
K=list(map(int,input().split()))

T=[]
for i in range(N):
    U=[]
    u=0
    for j in range(i,N):
        u+=A[j]
        U.append(u)
    T.append(U)

V=[0];v=0
for s in S:
    if s=="E":
        v+=1
    V.append(v)

for k in K:
    X=0
    for i in range(N):
        p=Binary_Search_Small_Count(T[i],k,True)
        X=max(X,V[i+p]-V[i])
    print(X)
0