結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー tcltktcltk
提出日時 2021-01-16 10:33:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,139 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 184,960 KB
最終ジャッジ日時 2024-11-27 10:29:44
合計ジャッジ時間 21,867 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
95,488 KB
testcase_01 AC 200 ms
90,112 KB
testcase_02 AC 171 ms
89,728 KB
testcase_03 AC 196 ms
89,984 KB
testcase_04 AC 197 ms
90,496 KB
testcase_05 AC 175 ms
90,112 KB
testcase_06 AC 297 ms
90,112 KB
testcase_07 AC 286 ms
90,112 KB
testcase_08 AC 422 ms
90,240 KB
testcase_09 AC 330 ms
90,112 KB
testcase_10 AC 365 ms
90,368 KB
testcase_11 AC 447 ms
91,008 KB
testcase_12 AC 158 ms
88,960 KB
testcase_13 AC 158 ms
88,960 KB
testcase_14 AC 154 ms
89,088 KB
testcase_15 AC 157 ms
89,088 KB
testcase_16 AC 160 ms
89,088 KB
testcase_17 TLE -
testcase_18 AC 284 ms
90,240 KB
testcase_19 AC 451 ms
90,240 KB
testcase_20 AC 369 ms
90,368 KB
testcase_21 AC 232 ms
90,880 KB
testcase_22 AC 208 ms
90,496 KB
testcase_23 AC 179 ms
89,728 KB
testcase_24 AC 189 ms
89,856 KB
testcase_25 AC 196 ms
90,496 KB
testcase_26 AC 165 ms
89,600 KB
testcase_27 AC 162 ms
88,960 KB
testcase_28 AC 196 ms
90,368 KB
testcase_29 AC 189 ms
89,856 KB
testcase_30 AC 185 ms
89,728 KB
testcase_31 AC 186 ms
89,728 KB
testcase_32 AC 185 ms
89,472 KB
testcase_33 AC 334 ms
91,008 KB
testcase_34 AC 449 ms
90,368 KB
testcase_35 AC 387 ms
90,240 KB
testcase_36 AC 252 ms
90,752 KB
testcase_37 AC 332 ms
91,008 KB
testcase_38 AC 322 ms
90,112 KB
testcase_39 AC 441 ms
90,752 KB
testcase_40 AC 473 ms
90,880 KB
testcase_41 AC 454 ms
90,752 KB
testcase_42 AC 395 ms
91,136 KB
testcase_43 AC 447 ms
90,752 KB
testcase_44 AC 307 ms
90,880 KB
testcase_45 AC 459 ms
91,008 KB
testcase_46 AC 245 ms
91,008 KB
testcase_47 AC 305 ms
90,240 KB
testcase_48 AC 275 ms
89,984 KB
testcase_49 AC 294 ms
90,240 KB
testcase_50 AC 322 ms
89,984 KB
testcase_51 AC 341 ms
90,752 KB
testcase_52 AC 325 ms
90,112 KB
testcase_53 AC 432 ms
91,008 KB
testcase_54 AC 239 ms
90,496 KB
testcase_55 AC 218 ms
90,624 KB
testcase_56 AC 383 ms
90,880 KB
testcase_57 AC 301 ms
90,112 KB
testcase_58 AC 154 ms
88,832 KB
testcase_59 AC 154 ms
184,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]
    for i in range(N):
        T.append(T[-1] + A[i])

    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 = len([1 for i in range(l, r) if S[i] == 'E'])
            score = max(score, score1)

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

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