結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2019-11-29 22:23:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 549 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 71,424 KB
最終ジャッジ日時 2024-09-14 05:48:08
合計ジャッジ時間 10,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
65,664 KB
testcase_01 AC 106 ms
66,944 KB
testcase_02 AC 56 ms
62,848 KB
testcase_03 AC 109 ms
65,024 KB
testcase_04 AC 124 ms
69,760 KB
testcase_05 AC 57 ms
61,824 KB
testcase_06 AC 167 ms
67,328 KB
testcase_07 AC 161 ms
68,352 KB
testcase_08 AC 295 ms
70,784 KB
testcase_09 AC 212 ms
70,784 KB
testcase_10 AC 242 ms
69,760 KB
testcase_11 AC 288 ms
68,480 KB
testcase_12 AC 38 ms
51,584 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 39 ms
51,456 KB
testcase_15 AC 39 ms
51,840 KB
testcase_16 AC 39 ms
51,840 KB
testcase_17 AC 297 ms
66,304 KB
testcase_18 AC 118 ms
70,144 KB
testcase_19 AC 199 ms
67,200 KB
testcase_20 AC 163 ms
68,864 KB
testcase_21 AC 73 ms
65,664 KB
testcase_22 AC 53 ms
61,568 KB
testcase_23 AC 48 ms
60,672 KB
testcase_24 AC 46 ms
59,776 KB
testcase_25 AC 49 ms
60,288 KB
testcase_26 AC 47 ms
60,288 KB
testcase_27 AC 44 ms
58,768 KB
testcase_28 AC 51 ms
62,976 KB
testcase_29 AC 53 ms
63,104 KB
testcase_30 AC 47 ms
60,672 KB
testcase_31 AC 46 ms
59,392 KB
testcase_32 AC 55 ms
63,872 KB
testcase_33 AC 176 ms
71,040 KB
testcase_34 AC 256 ms
70,784 KB
testcase_35 AC 236 ms
70,144 KB
testcase_36 AC 103 ms
68,992 KB
testcase_37 AC 167 ms
68,736 KB
testcase_38 AC 173 ms
67,456 KB
testcase_39 AC 260 ms
69,120 KB
testcase_40 AC 287 ms
69,248 KB
testcase_41 AC 290 ms
70,144 KB
testcase_42 AC 228 ms
68,608 KB
testcase_43 AC 296 ms
71,424 KB
testcase_44 AC 135 ms
67,072 KB
testcase_45 AC 291 ms
69,376 KB
testcase_46 AC 82 ms
66,816 KB
testcase_47 AC 143 ms
66,688 KB
testcase_48 AC 131 ms
71,424 KB
testcase_49 AC 138 ms
69,120 KB
testcase_50 AC 158 ms
68,864 KB
testcase_51 AC 172 ms
67,840 KB
testcase_52 AC 177 ms
68,736 KB
testcase_53 AC 262 ms
69,760 KB
testcase_54 AC 101 ms
68,864 KB
testcase_55 AC 67 ms
66,688 KB
testcase_56 AC 208 ms
69,376 KB
testcase_57 AC 162 ms
69,504 KB
testcase_58 AC 39 ms
51,968 KB
testcase_59 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

S = input()

A = list(map(int,input().split()))
AS = [0]

for i in range(N):
    AS.append(AS[-1] + A[i])

AS.append(float("inf"))

SS = [0]
for i in range(N):
    if S[i] == "E":
        SS.append(SS[-1] + 1)
    else:
        SS.append(SS[-1])

Q = int(input())
K = list(map(int,input().split()))

for loop in range(Q):

    nk = K[loop]
    nans = 0

    for root in range(N):

        l = root
        r = N + 1

        while r - l != 1:

            m = (l+r) // 2
            if AS[m] - AS[root] > nk:
                r = m
            else:
                l = m

        nans = max(nans , SS[l] - SS[root] )

    print (nans)
0