結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー O2MTO2MT
提出日時 2021-03-24 22:32:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-11-26 23:30:28
合計ジャッジ時間 9,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,808 KB
testcase_01 AC 99 ms
76,672 KB
testcase_02 AC 87 ms
75,904 KB
testcase_03 AC 114 ms
75,904 KB
testcase_04 AC 157 ms
76,032 KB
testcase_05 AC 108 ms
75,776 KB
testcase_06 AC 123 ms
76,544 KB
testcase_07 AC 140 ms
76,672 KB
testcase_08 AC 250 ms
76,416 KB
testcase_09 AC 176 ms
76,288 KB
testcase_10 AC 191 ms
76,800 KB
testcase_11 AC 237 ms
76,544 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 233 ms
76,672 KB
testcase_18 AC 171 ms
76,160 KB
testcase_19 AC 122 ms
76,544 KB
testcase_20 AC 203 ms
76,160 KB
testcase_21 AC 73 ms
75,520 KB
testcase_22 AC 102 ms
76,160 KB
testcase_23 AC 42 ms
57,344 KB
testcase_24 AC 60 ms
71,424 KB
testcase_25 AC 59 ms
71,424 KB
testcase_26 AC 60 ms
72,064 KB
testcase_27 AC 50 ms
61,696 KB
testcase_28 AC 55 ms
64,256 KB
testcase_29 AC 58 ms
68,736 KB
testcase_30 AC 54 ms
65,792 KB
testcase_31 AC 54 ms
66,816 KB
testcase_32 AC 62 ms
73,344 KB
testcase_33 AC 224 ms
76,416 KB
testcase_34 AC 200 ms
77,056 KB
testcase_35 AC 207 ms
76,416 KB
testcase_36 AC 126 ms
75,776 KB
testcase_37 AC 209 ms
76,416 KB
testcase_38 AC 131 ms
76,544 KB
testcase_39 AC 203 ms
76,672 KB
testcase_40 AC 210 ms
76,800 KB
testcase_41 AC 204 ms
76,800 KB
testcase_42 AC 223 ms
77,056 KB
testcase_43 AC 210 ms
76,672 KB
testcase_44 AC 93 ms
76,544 KB
testcase_45 AC 252 ms
76,544 KB
testcase_46 AC 75 ms
75,776 KB
testcase_47 AC 113 ms
76,672 KB
testcase_48 AC 174 ms
75,904 KB
testcase_49 AC 120 ms
76,544 KB
testcase_50 AC 174 ms
76,416 KB
testcase_51 AC 162 ms
76,416 KB
testcase_52 AC 159 ms
76,800 KB
testcase_53 AC 254 ms
76,800 KB
testcase_54 AC 148 ms
76,288 KB
testcase_55 AC 72 ms
75,520 KB
testcase_56 AC 200 ms
76,416 KB
testcase_57 AC 151 ms
76,928 KB
testcase_58 AC 38 ms
51,968 KB
testcase_59 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
from bisect import bisect_left
N = int(input())
S = list(str(input()))
A = [0]+list(map(int,input().split()))
Q = int(input())
K = list(map(int,input().split()))
KS = sorted(K)
scoreK = [0]*Q
sumA = list(accumulate(A))
E = []
for s in S:
    if s == 'E':
        E.append(1)
    else:
        E.append(0)
sumE = [0]+list(accumulate(E))
for i in range(N+1):
    for j in range(i,N+1):
        cost = sumA[j]-sumA[i]
        enemies = sumE[j]-sumE[i]
        b = bisect_left(KS,cost)
        if b < Q:
            scoreK[b] = max(scoreK[b],enemies)
m = 0
for i in range(Q):
    m = max(scoreK[i],m)
    scoreK[i] = m
mapK = {}
for i in range(Q):
    mapK[KS[i]] = scoreK[i]
for k in K:
    print(mapK[k])
0