結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー terasaterasa
提出日時 2022-06-06 18:55:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 1,227 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,764 KB
最終ジャッジ日時 2024-09-21 04:43:01
合計ジャッジ時間 9,164 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
73,856 KB
testcase_01 AC 93 ms
72,832 KB
testcase_02 AC 65 ms
67,456 KB
testcase_03 AC 91 ms
69,632 KB
testcase_04 AC 108 ms
74,752 KB
testcase_05 AC 61 ms
65,920 KB
testcase_06 AC 123 ms
74,368 KB
testcase_07 AC 127 ms
77,056 KB
testcase_08 AC 198 ms
77,340 KB
testcase_09 AC 156 ms
77,440 KB
testcase_10 AC 170 ms
77,764 KB
testcase_11 AC 175 ms
75,136 KB
testcase_12 AC 44 ms
54,400 KB
testcase_13 AC 44 ms
55,168 KB
testcase_14 AC 45 ms
54,664 KB
testcase_15 AC 45 ms
54,784 KB
testcase_16 AC 45 ms
55,040 KB
testcase_17 AC 101 ms
70,016 KB
testcase_18 AC 102 ms
72,576 KB
testcase_19 AC 148 ms
77,056 KB
testcase_20 AC 132 ms
74,624 KB
testcase_21 AC 91 ms
76,972 KB
testcase_22 AC 59 ms
65,792 KB
testcase_23 AC 60 ms
65,024 KB
testcase_24 AC 73 ms
69,376 KB
testcase_25 AC 74 ms
69,120 KB
testcase_26 AC 61 ms
61,944 KB
testcase_27 AC 56 ms
54,784 KB
testcase_28 AC 83 ms
72,704 KB
testcase_29 AC 78 ms
69,504 KB
testcase_30 AC 73 ms
66,944 KB
testcase_31 AC 73 ms
66,560 KB
testcase_32 AC 67 ms
64,512 KB
testcase_33 AC 157 ms
76,928 KB
testcase_34 AC 203 ms
77,312 KB
testcase_35 AC 176 ms
77,056 KB
testcase_36 AC 111 ms
77,312 KB
testcase_37 AC 141 ms
77,056 KB
testcase_38 AC 140 ms
74,496 KB
testcase_39 AC 201 ms
76,948 KB
testcase_40 AC 200 ms
76,800 KB
testcase_41 AC 209 ms
76,544 KB
testcase_42 AC 173 ms
76,928 KB
testcase_43 AC 209 ms
77,184 KB
testcase_44 AC 121 ms
77,056 KB
testcase_45 AC 210 ms
76,740 KB
testcase_46 AC 94 ms
77,184 KB
testcase_47 AC 126 ms
74,240 KB
testcase_48 AC 114 ms
73,344 KB
testcase_49 AC 115 ms
73,856 KB
testcase_50 AC 129 ms
73,344 KB
testcase_51 AC 143 ms
74,240 KB
testcase_52 AC 162 ms
77,312 KB
testcase_53 AC 214 ms
77,440 KB
testcase_54 AC 108 ms
73,984 KB
testcase_55 AC 76 ms
65,920 KB
testcase_56 AC 183 ms
76,928 KB
testcase_57 AC 139 ms
73,088 KB
testcase_58 AC 48 ms
54,784 KB
testcase_59 AC 45 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


N = int(input())
S = input()[:-1]
A = list(map(int, input().split()))
Q = int(input())
K = list(map(int, input().split()))

for i in range(Q):
    l = 0
    r = 1
    acc = 0
    cnt = 0
    ans = 0
    while r <= N:
        acc += A[r - 1]
        if S[r - 1] == 'E':
            cnt += 1
        while acc > K[i]:
            acc -= A[l]
            if S[l] == 'E':
                cnt -= 1
            l += 1
        ans = max(ans, cnt)
        r += 1
    print(ans)
0