結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー tcltktcltk
提出日時 2021-01-16 10:35:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 90,368 KB
最終ジャッジ日時 2024-05-05 12:55:32
合計ジャッジ時間 13,150 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
89,728 KB
testcase_01 AC 159 ms
89,984 KB
testcase_02 AC 147 ms
89,344 KB
testcase_03 AC 162 ms
89,976 KB
testcase_04 AC 160 ms
89,876 KB
testcase_05 AC 148 ms
89,728 KB
testcase_06 AC 178 ms
90,244 KB
testcase_07 AC 180 ms
90,240 KB
testcase_08 AC 206 ms
89,728 KB
testcase_09 AC 194 ms
89,728 KB
testcase_10 AC 202 ms
89,728 KB
testcase_11 AC 251 ms
90,112 KB
testcase_12 AC 143 ms
89,284 KB
testcase_13 AC 146 ms
89,088 KB
testcase_14 AC 142 ms
89,088 KB
testcase_15 AC 142 ms
89,132 KB
testcase_16 AC 143 ms
88,960 KB
testcase_17 AC 227 ms
90,112 KB
testcase_18 AC 183 ms
90,124 KB
testcase_19 AC 208 ms
90,240 KB
testcase_20 AC 204 ms
90,112 KB
testcase_21 AC 167 ms
89,984 KB
testcase_22 AC 156 ms
89,472 KB
testcase_23 AC 153 ms
89,344 KB
testcase_24 AC 158 ms
89,600 KB
testcase_25 AC 153 ms
88,960 KB
testcase_26 AC 147 ms
89,352 KB
testcase_27 AC 142 ms
89,088 KB
testcase_28 AC 153 ms
90,240 KB
testcase_29 AC 150 ms
88,960 KB
testcase_30 AC 153 ms
89,472 KB
testcase_31 AC 153 ms
89,600 KB
testcase_32 AC 160 ms
89,144 KB
testcase_33 AC 200 ms
90,112 KB
testcase_34 AC 236 ms
90,112 KB
testcase_35 AC 217 ms
89,984 KB
testcase_36 AC 177 ms
89,964 KB
testcase_37 AC 203 ms
90,112 KB
testcase_38 AC 217 ms
90,240 KB
testcase_39 AC 235 ms
90,240 KB
testcase_40 AC 233 ms
89,728 KB
testcase_41 AC 241 ms
90,240 KB
testcase_42 AC 211 ms
90,112 KB
testcase_43 AC 242 ms
90,112 KB
testcase_44 AC 188 ms
90,240 KB
testcase_45 AC 237 ms
89,728 KB
testcase_46 AC 171 ms
90,364 KB
testcase_47 AC 210 ms
90,056 KB
testcase_48 AC 189 ms
90,112 KB
testcase_49 AC 202 ms
90,112 KB
testcase_50 AC 212 ms
90,112 KB
testcase_51 AC 204 ms
90,100 KB
testcase_52 AC 203 ms
90,240 KB
testcase_53 AC 225 ms
90,240 KB
testcase_54 AC 173 ms
90,368 KB
testcase_55 AC 162 ms
89,856 KB
testcase_56 AC 232 ms
90,248 KB
testcase_57 AC 195 ms
90,240 KB
testcase_58 AC 141 ms
88,704 KB
testcase_59 AC 142 ms
88,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """10
# EEEEEEEEEE
# 1 2 3 4 5 6 7 8 9 10
# 10
# 1 2 3 4 5 6 7 8 9 10
# """
# sys.stdin = io.StringIO(_INPUT)



def main():
    N = int(input())
    S = input()
    A = list(map(int, input().split()))
    Q = int(input())
    K = list(map(int, input().split()))

    # T[i] := A[0]~A[i-1] を倒すのに必要な威力(累積和)
    T = [0]
    # C[i] := A[0]~A[i-1] の間の敵の数
    C = [0]
    for i in range(N):
        T.append(T[-1] + A[i])
        if S[i] == 'E':
            C.append(C[-1] + 1)
        else:
            C.append(C[-1])

    for power in K:
        score = 0
        r = 0
        for l in range(N):
            while r < N and T[r+1] - T[l] <= power:
                r += 1
            score1 = C[r] - C[l]
            score = max(score, score1)

            if r == l:
                r += 1
        print(score)

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