結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-11 06:25:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-09-17 10:07:46
合計ジャッジ時間 7,219 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
69,104 KB
testcase_01 AC 69 ms
69,792 KB
testcase_02 AC 51 ms
62,512 KB
testcase_03 AC 78 ms
67,128 KB
testcase_04 AC 75 ms
70,076 KB
testcase_05 AC 52 ms
64,552 KB
testcase_06 AC 101 ms
71,976 KB
testcase_07 AC 94 ms
71,672 KB
testcase_08 AC 137 ms
74,668 KB
testcase_09 AC 116 ms
74,108 KB
testcase_10 AC 121 ms
74,144 KB
testcase_11 AC 151 ms
69,800 KB
testcase_12 AC 38 ms
52,896 KB
testcase_13 AC 37 ms
52,244 KB
testcase_14 AC 37 ms
52,628 KB
testcase_15 AC 38 ms
52,568 KB
testcase_16 AC 37 ms
53,328 KB
testcase_17 AC 98 ms
67,052 KB
testcase_18 AC 88 ms
72,388 KB
testcase_19 AC 111 ms
67,256 KB
testcase_20 AC 109 ms
75,392 KB
testcase_21 AC 72 ms
72,608 KB
testcase_22 AC 51 ms
64,264 KB
testcase_23 AC 49 ms
63,732 KB
testcase_24 AC 47 ms
61,300 KB
testcase_25 AC 52 ms
64,104 KB
testcase_26 AC 43 ms
59,468 KB
testcase_27 AC 38 ms
52,996 KB
testcase_28 AC 57 ms
65,972 KB
testcase_29 AC 54 ms
64,784 KB
testcase_30 AC 49 ms
62,080 KB
testcase_31 AC 50 ms
62,640 KB
testcase_32 AC 48 ms
61,832 KB
testcase_33 AC 95 ms
70,060 KB
testcase_34 AC 149 ms
74,696 KB
testcase_35 AC 117 ms
71,064 KB
testcase_36 AC 75 ms
69,808 KB
testcase_37 AC 104 ms
73,108 KB
testcase_38 AC 106 ms
72,676 KB
testcase_39 AC 144 ms
72,672 KB
testcase_40 AC 164 ms
74,228 KB
testcase_41 AC 155 ms
74,140 KB
testcase_42 AC 115 ms
70,684 KB
testcase_43 AC 145 ms
74,976 KB
testcase_44 AC 95 ms
73,644 KB
testcase_45 AC 144 ms
74,260 KB
testcase_46 AC 67 ms
67,320 KB
testcase_47 AC 99 ms
69,140 KB
testcase_48 AC 88 ms
71,832 KB
testcase_49 AC 98 ms
72,476 KB
testcase_50 AC 103 ms
74,508 KB
testcase_51 AC 111 ms
74,164 KB
testcase_52 AC 110 ms
70,464 KB
testcase_53 AC 143 ms
71,536 KB
testcase_54 AC 77 ms
70,080 KB
testcase_55 AC 55 ms
63,948 KB
testcase_56 AC 120 ms
72,520 KB
testcase_57 AC 102 ms
73,332 KB
testcase_58 AC 38 ms
53,840 KB
testcase_59 AC 38 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = str(input())
A = list(map(int, input().split()))
q = int(input())
K = list(map(int, input().split()))

B = [0]*n
for i in range(n):
    if s[i] == 'E':
        B[i] = 1

from itertools import accumulate
C = [0]+B
C = list(accumulate(C))

for i in range(q):
    x = 0
    y = 0
    S = 0
    ans = -1
    for x in range(n):
        while y < n and S <= K[i]:
            S += A[y]
            y += 1
        if S <= K[i]:
            ans = max(ans, C[y]-C[x])
        else:
            ans = max(ans, C[y-1]-C[x])
        if x == y:
            y += 1
        else:
            S -= A[x]
    print(ans)
0