結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー toyuzukotoyuzuko
提出日時 2020-03-27 23:28:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 722 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 526,096 KB
最終ジャッジ日時 2025-01-02 09:52:21
合計ジャッジ時間 85,596 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 TLE -
testcase_05 WA -
testcase_06 AC 1,189 ms
177,228 KB
testcase_07 MLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 42 ms
61,404 KB
testcase_13 AC 45 ms
353,724 KB
testcase_14 AC 40 ms
61,088 KB
testcase_15 WA -
testcase_16 AC 42 ms
62,260 KB
testcase_17 AC 145 ms
338,444 KB
testcase_18 TLE -
testcase_19 AC 1,136 ms
451,964 KB
testcase_20 TLE -
testcase_21 AC 146 ms
343,088 KB
testcase_22 AC 867 ms
161,740 KB
testcase_23 WA -
testcase_24 AC 63 ms
76,632 KB
testcase_25 AC 63 ms
352,012 KB
testcase_26 AC 62 ms
77,020 KB
testcase_27 AC 52 ms
367,932 KB
testcase_28 WA -
testcase_29 AC 64 ms
70,888 KB
testcase_30 AC 62 ms
69,148 KB
testcase_31 AC 60 ms
68,520 KB
testcase_32 AC 65 ms
71,852 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 1,333 ms
176,064 KB
testcase_37 TLE -
testcase_38 AC 1,206 ms
170,428 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 WA -
testcase_45 TLE -
testcase_46 WA -
testcase_47 AC 869 ms
147,556 KB
testcase_48 TLE -
testcase_49 AC 987 ms
154,280 KB
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 AC 1,970 ms
205,100 KB
testcase_55 AC 129 ms
86,816 KB
testcase_56 TLE -
testcase_57 WA -
testcase_58 AC 41 ms
54,084 KB
testcase_59 AC 40 ms
310,836 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):
    print(D[bisect_left(D, [K[i], INF]) - 1][1])
0