結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー hedwig100hedwig100
提出日時 2020-04-13 15:22:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 78,060 KB
最終ジャッジ日時 2024-09-25 01:16:03
合計ジャッジ時間 8,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
77,212 KB
testcase_01 AC 70 ms
73,688 KB
testcase_02 AC 58 ms
67,020 KB
testcase_03 AC 78 ms
73,240 KB
testcase_04 AC 71 ms
74,604 KB
testcase_05 AC 61 ms
67,312 KB
testcase_06 AC 119 ms
77,320 KB
testcase_07 AC 112 ms
77,140 KB
testcase_08 AC 161 ms
77,636 KB
testcase_09 AC 130 ms
77,756 KB
testcase_10 AC 136 ms
77,608 KB
testcase_11 AC 177 ms
77,200 KB
testcase_12 AC 49 ms
61,020 KB
testcase_13 AC 49 ms
61,504 KB
testcase_14 AC 51 ms
62,284 KB
testcase_15 AC 50 ms
61,168 KB
testcase_16 AC 50 ms
62,092 KB
testcase_17 AC 185 ms
77,036 KB
testcase_18 AC 112 ms
77,024 KB
testcase_19 AC 172 ms
77,312 KB
testcase_20 AC 140 ms
77,272 KB
testcase_21 AC 102 ms
78,060 KB
testcase_22 AC 73 ms
73,032 KB
testcase_23 AC 63 ms
67,456 KB
testcase_24 AC 85 ms
75,912 KB
testcase_25 AC 71 ms
72,096 KB
testcase_26 AC 52 ms
62,604 KB
testcase_27 AC 50 ms
60,960 KB
testcase_28 AC 71 ms
73,296 KB
testcase_29 AC 66 ms
69,288 KB
testcase_30 AC 63 ms
67,664 KB
testcase_31 AC 67 ms
70,432 KB
testcase_32 AC 69 ms
70,068 KB
testcase_33 AC 140 ms
77,280 KB
testcase_34 AC 191 ms
77,064 KB
testcase_35 AC 157 ms
77,544 KB
testcase_36 AC 104 ms
77,368 KB
testcase_37 AC 137 ms
77,136 KB
testcase_38 AC 147 ms
77,256 KB
testcase_39 AC 200 ms
77,420 KB
testcase_40 AC 204 ms
77,504 KB
testcase_41 AC 210 ms
77,304 KB
testcase_42 AC 161 ms
77,156 KB
testcase_43 AC 196 ms
77,184 KB
testcase_44 AC 128 ms
77,384 KB
testcase_45 AC 195 ms
77,056 KB
testcase_46 AC 97 ms
77,128 KB
testcase_47 AC 137 ms
77,060 KB
testcase_48 AC 113 ms
77,008 KB
testcase_49 AC 126 ms
77,012 KB
testcase_50 AC 141 ms
77,504 KB
testcase_51 AC 141 ms
77,912 KB
testcase_52 AC 135 ms
76,960 KB
testcase_53 AC 190 ms
78,012 KB
testcase_54 AC 96 ms
77,192 KB
testcase_55 AC 85 ms
77,196 KB
testcase_56 AC 161 ms
77,540 KB
testcase_57 AC 129 ms
77,120 KB
testcase_58 AC 50 ms
62,352 KB
testcase_59 AC 50 ms
60,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from collections import deque
from heapq import heapify,heappush,heappop
from copy import deepcopy

def main():
    n = int(input())
    s = input()
    a = list(map(int,input().split()))
    q = int(input())
    query = list(map(int,input().split()))

    for index in range(q):
        t = query[index]
        r = 0
        tot = 0
        ans = 0
        cnt = 0
        for l in range(n):
            while r < n and tot + a[r] <= t:
                if s[r] == 'E':
                    cnt += 1
                tot += a[r]
                r += 1
            
            ans = max(ans,cnt)
            if l == r:
                r += 1
                cnt = 0
                tot = 0
            else:
                if s[l] == 'E':
                    cnt -= 1
                tot -= a[l]
        
        print(ans)

if __name__ == '__main__':
    main()
0