結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
95,488 KB
testcase_01 AC 166 ms
90,368 KB
testcase_02 AC 153 ms
89,600 KB
testcase_03 AC 172 ms
89,856 KB
testcase_04 AC 171 ms
89,984 KB
testcase_05 AC 154 ms
89,728 KB
testcase_06 AC 250 ms
89,984 KB
testcase_07 AC 262 ms
90,240 KB
testcase_08 AC 351 ms
90,240 KB
testcase_09 AC 280 ms
90,112 KB
testcase_10 AC 314 ms
89,984 KB
testcase_11 AC 393 ms
90,496 KB
testcase_12 AC 151 ms
88,704 KB
testcase_13 AC 151 ms
89,088 KB
testcase_14 AC 140 ms
89,088 KB
testcase_15 AC 136 ms
88,960 KB
testcase_16 AC 137 ms
88,960 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
権限があれば一括ダウンロードができます

ソースコード

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