結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
72,192 KB
testcase_01 AC 85 ms
76,824 KB
testcase_02 AC 81 ms
75,904 KB
testcase_03 AC 115 ms
76,472 KB
testcase_04 AC 154 ms
76,628 KB
testcase_05 AC 100 ms
75,944 KB
testcase_06 AC 119 ms
76,544 KB
testcase_07 AC 138 ms
76,600 KB
testcase_08 AC 250 ms
76,928 KB
testcase_09 AC 175 ms
77,116 KB
testcase_10 AC 192 ms
76,784 KB
testcase_11 AC 246 ms
77,184 KB
testcase_12 AC 36 ms
52,608 KB
testcase_13 AC 36 ms
52,352 KB
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 35 ms
52,352 KB
testcase_16 AC 36 ms
51,968 KB
testcase_17 AC 235 ms
76,644 KB
testcase_18 AC 166 ms
76,224 KB
testcase_19 AC 115 ms
76,772 KB
testcase_20 AC 209 ms
76,356 KB
testcase_21 AC 63 ms
75,648 KB
testcase_22 AC 92 ms
76,092 KB
testcase_23 AC 40 ms
58,624 KB
testcase_24 AC 51 ms
72,064 KB
testcase_25 AC 51 ms
71,648 KB
testcase_26 AC 50 ms
72,416 KB
testcase_27 AC 45 ms
61,440 KB
testcase_28 AC 49 ms
65,536 KB
testcase_29 AC 50 ms
68,864 KB
testcase_30 AC 48 ms
65,792 KB
testcase_31 AC 47 ms
67,320 KB
testcase_32 AC 51 ms
73,344 KB
testcase_33 AC 226 ms
76,508 KB
testcase_34 AC 198 ms
77,184 KB
testcase_35 AC 208 ms
76,864 KB
testcase_36 AC 122 ms
76,284 KB
testcase_37 AC 211 ms
76,596 KB
testcase_38 AC 129 ms
76,544 KB
testcase_39 AC 207 ms
76,928 KB
testcase_40 AC 213 ms
76,920 KB
testcase_41 AC 218 ms
76,672 KB
testcase_42 AC 223 ms
77,056 KB
testcase_43 AC 220 ms
76,864 KB
testcase_44 AC 84 ms
76,516 KB
testcase_45 AC 260 ms
77,056 KB
testcase_46 AC 67 ms
76,032 KB
testcase_47 AC 110 ms
77,056 KB
testcase_48 AC 178 ms
76,360 KB
testcase_49 AC 112 ms
76,672 KB
testcase_50 AC 175 ms
76,544 KB
testcase_51 AC 161 ms
76,800 KB
testcase_52 AC 164 ms
76,964 KB
testcase_53 AC 257 ms
76,928 KB
testcase_54 AC 150 ms
76,400 KB
testcase_55 AC 61 ms
75,904 KB
testcase_56 AC 196 ms
77,236 KB
testcase_57 AC 151 ms
77,172 KB
testcase_58 AC 35 ms
52,352 KB
testcase_59 AC 36 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