結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー flippergoflippergo
提出日時 2020-12-26 12:49:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 75,004 KB
最終ジャッジ日時 2024-09-24 16:02:13
合計ジャッジ時間 8,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
66,348 KB
testcase_01 AC 91 ms
67,688 KB
testcase_02 AC 50 ms
63,104 KB
testcase_03 AC 92 ms
66,840 KB
testcase_04 AC 111 ms
71,832 KB
testcase_05 AC 55 ms
63,012 KB
testcase_06 AC 148 ms
70,588 KB
testcase_07 AC 151 ms
74,368 KB
testcase_08 AC 257 ms
71,144 KB
testcase_09 AC 196 ms
74,680 KB
testcase_10 AC 218 ms
73,600 KB
testcase_11 AC 250 ms
72,528 KB
testcase_12 AC 35 ms
53,692 KB
testcase_13 AC 36 ms
52,132 KB
testcase_14 AC 34 ms
52,568 KB
testcase_15 AC 31 ms
52,200 KB
testcase_16 AC 33 ms
52,836 KB
testcase_17 AC 242 ms
68,084 KB
testcase_18 AC 103 ms
69,680 KB
testcase_19 AC 183 ms
70,224 KB
testcase_20 AC 143 ms
71,296 KB
testcase_21 AC 64 ms
66,640 KB
testcase_22 AC 49 ms
62,760 KB
testcase_23 AC 47 ms
63,604 KB
testcase_24 AC 41 ms
61,096 KB
testcase_25 AC 45 ms
61,816 KB
testcase_26 AC 41 ms
60,324 KB
testcase_27 AC 37 ms
59,116 KB
testcase_28 AC 46 ms
62,764 KB
testcase_29 AC 48 ms
63,496 KB
testcase_30 AC 48 ms
64,488 KB
testcase_31 AC 42 ms
60,364 KB
testcase_32 AC 48 ms
64,648 KB
testcase_33 AC 140 ms
71,032 KB
testcase_34 AC 218 ms
73,868 KB
testcase_35 AC 190 ms
71,564 KB
testcase_36 AC 91 ms
68,952 KB
testcase_37 AC 151 ms
73,136 KB
testcase_38 AC 148 ms
70,444 KB
testcase_39 AC 225 ms
74,300 KB
testcase_40 AC 253 ms
74,436 KB
testcase_41 AC 255 ms
75,004 KB
testcase_42 AC 192 ms
72,116 KB
testcase_43 AC 252 ms
73,680 KB
testcase_44 AC 117 ms
71,272 KB
testcase_45 AC 235 ms
74,700 KB
testcase_46 AC 73 ms
68,084 KB
testcase_47 AC 135 ms
70,832 KB
testcase_48 AC 120 ms
73,008 KB
testcase_49 AC 122 ms
68,148 KB
testcase_50 AC 142 ms
72,908 KB
testcase_51 AC 166 ms
73,864 KB
testcase_52 AC 157 ms
73,940 KB
testcase_53 AC 232 ms
73,812 KB
testcase_54 AC 91 ms
70,696 KB
testcase_55 AC 56 ms
65,784 KB
testcase_56 AC 187 ms
69,980 KB
testcase_57 AC 145 ms
70,944 KB
testcase_58 AC 34 ms
53,380 KB
testcase_59 AC 34 ms
53,832 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-1
        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