結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー toyuzukotoyuzuko
提出日時 2020-03-27 23:37:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 748 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 526,068 KB
最終ジャッジ日時 2025-01-02 09:54:59
合計ジャッジ時間 84,315 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
84,996 KB
testcase_01 AC 387 ms
472,984 KB
testcase_02 AC 487 ms
130,512 KB
testcase_03 AC 1,322 ms
401,036 KB
testcase_04 TLE -
testcase_05 AC 1,024 ms
409,136 KB
testcase_06 AC 1,172 ms
177,364 KB
testcase_07 MLE -
testcase_08 TLE -
testcase_09 MLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 38 ms
61,536 KB
testcase_13 AC 36 ms
327,508 KB
testcase_14 AC 38 ms
62,280 KB
testcase_15 AC 38 ms
304,944 KB
testcase_16 AC 39 ms
61,552 KB
testcase_17 AC 142 ms
338,608 KB
testcase_18 TLE -
testcase_19 AC 1,086 ms
469,236 KB
testcase_20 TLE -
testcase_21 AC 121 ms
343,320 KB
testcase_22 AC 850 ms
161,872 KB
testcase_23 AC 44 ms
332,088 KB
testcase_24 AC 65 ms
78,104 KB
testcase_25 AC 61 ms
352,520 KB
testcase_26 AC 62 ms
77,760 KB
testcase_27 AC 53 ms
66,280 KB
testcase_28 AC 54 ms
68,556 KB
testcase_29 AC 62 ms
71,220 KB
testcase_30 AC 58 ms
70,124 KB
testcase_31 AC 56 ms
68,960 KB
testcase_32 AC 63 ms
72,960 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 1,282 ms
175,888 KB
testcase_37 TLE -
testcase_38 AC 1,180 ms
170,656 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 354 ms
110,628 KB
testcase_45 TLE -
testcase_46 AC 171 ms
90,556 KB
testcase_47 AC 800 ms
147,552 KB
testcase_48 TLE -
testcase_49 AC 955 ms
154,320 KB
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 1,941 ms
205,464 KB
testcase_53 TLE -
testcase_54 AC 1,896 ms
205,560 KB
testcase_55 AC 131 ms
86,920 KB
testcase_56 TLE -
testcase_57 AC 1,600 ms
182,980 KB
testcase_58 AC 41 ms
54,932 KB
testcase_59 AC 41 ms
54,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right, bisect_left
from collections import defaultdict
INF = 10**18

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

enemy = [0]
hp = [0]

for i in range(N):
    if S[i] == 'E':
        enemy.append(enemy[-1] + 1)
    else:
        enemy.append(enemy[-1])
    hp.append(hp[-1] + A[i])

D = defaultdict(int)

for i in range(N):
    for j in range(i, N):
        D[hp[j + 1] - hp[i]] = max(D[hp[j + 1] - hp[i]], enemy[j + 1] - enemy[i])

D = [list(d) for d in D.items()]
D.sort()

tmp = 0
for i in range(len(D)):
    tmp = max(D[i][1], tmp)
    D[i][1] = tmp

for i in range(Q):
    x = bisect_left(D, [K[i], INF])
    print(D[x - 1][1] if x > 0 else 0)
0