結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー convexineqconvexineq
提出日時 2019-11-29 22:23:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 77,124 KB
最終ジャッジ日時 2024-09-14 05:48:40
合計ジャッジ時間 8,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
76,684 KB
testcase_01 AC 98 ms
76,796 KB
testcase_02 AC 66 ms
69,100 KB
testcase_03 AC 96 ms
74,264 KB
testcase_04 AC 114 ms
76,936 KB
testcase_05 AC 70 ms
70,664 KB
testcase_06 AC 130 ms
76,668 KB
testcase_07 AC 132 ms
76,640 KB
testcase_08 AC 190 ms
74,048 KB
testcase_09 AC 150 ms
74,688 KB
testcase_10 AC 172 ms
76,660 KB
testcase_11 AC 165 ms
74,252 KB
testcase_12 AC 38 ms
53,720 KB
testcase_13 AC 37 ms
52,956 KB
testcase_14 AC 37 ms
52,252 KB
testcase_15 AC 37 ms
52,888 KB
testcase_16 AC 37 ms
52,244 KB
testcase_17 AC 122 ms
66,776 KB
testcase_18 AC 111 ms
76,928 KB
testcase_19 AC 139 ms
72,748 KB
testcase_20 AC 124 ms
72,836 KB
testcase_21 AC 73 ms
72,332 KB
testcase_22 AC 54 ms
64,348 KB
testcase_23 AC 57 ms
65,996 KB
testcase_24 AC 59 ms
66,544 KB
testcase_25 AC 65 ms
69,748 KB
testcase_26 AC 47 ms
60,056 KB
testcase_27 AC 38 ms
53,216 KB
testcase_28 AC 67 ms
69,804 KB
testcase_29 AC 55 ms
64,452 KB
testcase_30 AC 54 ms
63,884 KB
testcase_31 AC 64 ms
69,496 KB
testcase_32 AC 63 ms
68,192 KB
testcase_33 AC 139 ms
76,752 KB
testcase_34 AC 194 ms
77,120 KB
testcase_35 AC 169 ms
76,600 KB
testcase_36 AC 84 ms
69,488 KB
testcase_37 AC 143 ms
77,124 KB
testcase_38 AC 130 ms
71,368 KB
testcase_39 AC 189 ms
74,432 KB
testcase_40 AC 200 ms
76,588 KB
testcase_41 AC 200 ms
77,000 KB
testcase_42 AC 162 ms
72,076 KB
testcase_43 AC 200 ms
76,504 KB
testcase_44 AC 124 ms
77,044 KB
testcase_45 AC 204 ms
75,288 KB
testcase_46 AC 75 ms
68,044 KB
testcase_47 AC 118 ms
73,312 KB
testcase_48 AC 106 ms
71,928 KB
testcase_49 AC 113 ms
74,620 KB
testcase_50 AC 134 ms
76,504 KB
testcase_51 AC 140 ms
73,728 KB
testcase_52 AC 142 ms
76,584 KB
testcase_53 AC 192 ms
77,048 KB
testcase_54 AC 108 ms
76,632 KB
testcase_55 AC 72 ms
70,944 KB
testcase_56 AC 160 ms
76,684 KB
testcase_57 AC 136 ms
76,864 KB
testcase_58 AC 38 ms
53,544 KB
testcase_59 AC 39 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
sys.setrecursionlimit(10**6)
readline = sys.stdin.readline
 
#h,w,k = [int(i) for i in readline().split()]
#n = int(input())
#ab = [[int(i) for i in readline().split()] for _ in range(n)]


n = int(input())
s = input()
a = [int(i) for i in readline().split()]
q = int(input())
k = [int(i) for i in readline().split()]


for ki in k:
    res = 0
    val = 0
    ans = 0
    r = 0
    for l in range(n):
        while r < n and res+a[r] <= ki:
            if s[r] == "E": val += 1
            res += a[r]
            r += 1
        #print(val,res,ki,ans)
        ans = max(ans, val)
        if s[l] == "E": val -= 1
        res -= a[l]

    print(ans)
    
    
    
    
    
0