結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー 👑 KazunKazun
提出日時 2021-02-07 19:09:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,044 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,072 KB
最終ジャッジ日時 2024-07-04 12:09:26
合計ジャッジ時間 7,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
82,176 KB
testcase_01 AC 104 ms
78,208 KB
testcase_02 AC 77 ms
77,696 KB
testcase_03 AC 102 ms
80,256 KB
testcase_04 AC 116 ms
84,352 KB
testcase_05 AC 82 ms
80,128 KB
testcase_06 AC 231 ms
80,896 KB
testcase_07 AC 236 ms
81,920 KB
testcase_08 AC 487 ms
93,056 KB
testcase_09 AC 315 ms
85,888 KB
testcase_10 AC 420 ms
86,144 KB
testcase_11 AC 532 ms
91,008 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 38 ms
51,840 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 35 ms
51,584 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
権限があれば一括ダウンロードができます

ソースコード

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)

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

        Y=0
        for j in range(i,i+p):
            if S[j]=="E":
                Y+=1
        X=max(X,Y)
    print(X)
0