結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー convexineqconvexineq
提出日時 2019-11-29 22:23:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 719 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-11-20 23:33:40
合計ジャッジ時間 81,573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 231 ms
16,128 KB
testcase_01 AC 977 ms
21,888 KB
testcase_02 AC 89 ms
16,000 KB
testcase_03 AC 1,110 ms
17,960 KB
testcase_04 AC 1,218 ms
16,256 KB
testcase_05 AC 147 ms
21,760 KB
testcase_06 TLE -
testcase_07 AC 1,889 ms
21,504 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 30 ms
16,256 KB
testcase_13 AC 30 ms
21,632 KB
testcase_14 AC 29 ms
16,000 KB
testcase_15 AC 30 ms
21,504 KB
testcase_16 AC 30 ms
16,000 KB
testcase_17 TLE -
testcase_18 AC 892 ms
16,128 KB
testcase_19 TLE -
testcase_20 AC 1,707 ms
16,256 KB
testcase_21 AC 288 ms
21,632 KB
testcase_22 AC 80 ms
16,128 KB
testcase_23 AC 35 ms
10,752 KB
testcase_24 AC 48 ms
10,752 KB
testcase_25 AC 49 ms
10,624 KB
testcase_26 AC 32 ms
10,624 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 47 ms
10,624 KB
testcase_29 AC 62 ms
10,624 KB
testcase_30 AC 45 ms
10,752 KB
testcase_31 AC 42 ms
10,752 KB
testcase_32 AC 56 ms
10,624 KB
testcase_33 AC 1,894 ms
10,752 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 681 ms
10,752 KB
testcase_37 AC 1,914 ms
10,880 KB
testcase_38 AC 1,963 ms
11,008 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 1,393 ms
11,008 KB
testcase_45 TLE -
testcase_46 AC 448 ms
10,880 KB
testcase_47 AC 1,607 ms
10,752 KB
testcase_48 AC 1,169 ms
10,752 KB
testcase_49 AC 1,421 ms
10,880 KB
testcase_50 AC 1,703 ms
10,752 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 AC 707 ms
10,880 KB
testcase_55 AC 155 ms
10,752 KB
testcase_56 TLE -
testcase_57 AC 1,785 ms
10,880 KB
testcase_58 AC 31 ms
10,752 KB
testcase_59 AC 30 ms
21,632 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