結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー toyuzukotoyuzuko
提出日時 2020-03-27 23:42:57
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 877 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 682,536 KB
最終ジャッジ日時 2025-01-02 09:56:30
合計ジャッジ時間 73,898 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
82,492 KB
testcase_01 MLE -
testcase_02 AC 333 ms
131,572 KB
testcase_03 MLE -
testcase_04 AC 1,632 ms
246,420 KB
testcase_05 MLE -
testcase_06 AC 851 ms
178,700 KB
testcase_07 MLE -
testcase_08 TLE -
testcase_09 MLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 45 ms
54,560 KB
testcase_13 AC 45 ms
54,940 KB
testcase_14 AC 45 ms
55,936 KB
testcase_15 AC 46 ms
55,148 KB
testcase_16 AC 45 ms
54,392 KB
testcase_17 AC 181 ms
77,776 KB
testcase_18 TLE -
testcase_19 AC 832 ms
171,560 KB
testcase_20 TLE -
testcase_21 AC 102 ms
79,884 KB
testcase_22 AC 579 ms
155,980 KB
testcase_23 AC 50 ms
61,560 KB
testcase_24 AC 73 ms
70,192 KB
testcase_25 AC 73 ms
69,480 KB
testcase_26 AC 69 ms
69,172 KB
testcase_27 AC 60 ms
66,636 KB
testcase_28 AC 65 ms
68,184 KB
testcase_29 AC 72 ms
69,740 KB
testcase_30 AC 67 ms
67,896 KB
testcase_31 AC 67 ms
68,676 KB
testcase_32 AC 74 ms
69,464 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 943 ms
180,844 KB
testcase_37 TLE -
testcase_38 AC 860 ms
172,312 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 260 ms
111,856 KB
testcase_45 TLE -
testcase_46 AC 137 ms
90,540 KB
testcase_47 AC 586 ms
148,788 KB
testcase_48 TLE -
testcase_49 AC 710 ms
155,776 KB
testcase_50 TLE -
testcase_51 AC 1,600 ms
252,068 KB
testcase_52 AC 1,442 ms
232,576 KB
testcase_53 TLE -
testcase_54 AC 1,421 ms
233,172 KB
testcase_55 AC 103 ms
80,036 KB
testcase_56 TLE -
testcase_57 AC 1,166 ms
198,552 KB
testcase_58 AC 43 ms
55,540 KB
testcase_59 AC 45 ms
478,512 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):
        if hp[j + 1] - hp[i] in D:
            D[hp[j + 1] - hp[i]] = max(D[hp[j + 1] - hp[i]], enemy[j + 1] - enemy[i])
        else:
            D[hp[j + 1] - hp[i]] = enemy[j + 1] - enemy[i]

D = [list(d) for d in D.items()]
D.sort(key=lambda x:x[0])

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