結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー flippergoflippergo
提出日時 2020-12-26 12:45:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 704 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,712 KB
実行使用メモリ 75,304 KB
最終ジャッジ日時 2024-09-24 16:00:58
合計ジャッジ時間 9,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 136 ms
66,648 KB
testcase_07 WA -
testcase_08 AC 245 ms
69,648 KB
testcase_09 AC 173 ms
68,280 KB
testcase_10 AC 197 ms
68,600 KB
testcase_11 WA -
testcase_12 AC 37 ms
53,916 KB
testcase_13 AC 37 ms
52,620 KB
testcase_14 AC 37 ms
52,972 KB
testcase_15 WA -
testcase_16 AC 37 ms
53,624 KB
testcase_17 AC 258 ms
67,368 KB
testcase_18 AC 102 ms
70,016 KB
testcase_19 AC 167 ms
68,064 KB
testcase_20 AC 145 ms
71,172 KB
testcase_21 AC 61 ms
64,908 KB
testcase_22 AC 53 ms
62,692 KB
testcase_23 WA -
testcase_24 AC 51 ms
63,640 KB
testcase_25 AC 51 ms
63,200 KB
testcase_26 AC 44 ms
60,004 KB
testcase_27 AC 42 ms
58,984 KB
testcase_28 WA -
testcase_29 AC 51 ms
64,228 KB
testcase_30 AC 50 ms
64,016 KB
testcase_31 WA -
testcase_32 AC 53 ms
63,956 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 88 ms
68,228 KB
testcase_37 WA -
testcase_38 AC 139 ms
65,692 KB
testcase_39 WA -
testcase_40 AC 378 ms
73,212 KB
testcase_41 WA -
testcase_42 AC 190 ms
68,528 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 120 ms
72,316 KB
testcase_49 WA -
testcase_50 AC 172 ms
71,192 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 289 ms
71,504 KB
testcase_54 AC 99 ms
71,672 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 38 ms
52,952 KB
testcase_59 AC 37 ms
52,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input().strip()
A = list(map(int,input().split()))
Q = int(input())
K = list(map(int,input().split()))
BS = [0 for _ in range(N+1)]
for i in range(1,N+1):
    if S[i-1]=="E":
        BS[i] = BS[i-1]+1
    else:
        BS[i] = BS[i-1]
BA = [0 for _ in range(N+1)]
for i in range(1,N+1):
    BA[i] = BA[i-1]+A[i-1]
for j in range(Q):
    k = K[j]
    cmax = 0
    for i in range(N):
        high = N
        low = i
        while high-low>1:
            mid = (high+low)//2
            if mid+1<=N and BA[mid+1]-BA[i]>k:
                high = mid
            else:
                low = mid
        ind = high
        cnt = BS[high]-BS[i]
        cmax = max(cmax,cnt)
    print(cmax)
0