結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー toyuzukotoyuzuko
提出日時 2020-03-27 23:27:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 722 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 322,560 KB
最終ジャッジ日時 2025-01-02 09:50:38
合計ジャッジ時間 97,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 TLE -
testcase_05 WA -
testcase_06 AC 1,894 ms
101,244 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 29 ms
17,188 KB
testcase_13 AC 28 ms
294,364 KB
testcase_14 AC 27 ms
17,060 KB
testcase_15 WA -
testcase_16 AC 27 ms
17,188 KB
testcase_17 AC 1,528 ms
229,952 KB
testcase_18 TLE -
testcase_19 AC 1,698 ms
315,516 KB
testcase_20 TLE -
testcase_21 AC 120 ms
295,120 KB
testcase_22 AC 1,292 ms
85,836 KB
testcase_23 WA -
testcase_24 AC 49 ms
18,468 KB
testcase_25 AC 46 ms
18,196 KB
testcase_26 AC 49 ms
18,064 KB
testcase_27 AC 36 ms
246,088 KB
testcase_28 WA -
testcase_29 AC 43 ms
292,188 KB
testcase_30 AC 37 ms
17,704 KB
testcase_31 AC 36 ms
255,100 KB
testcase_32 AC 50 ms
18,084 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 1,994 ms
110,112 KB
testcase_37 TLE -
testcase_38 AC 1,767 ms
104,828 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 1,205 ms
75,096 KB
testcase_48 TLE -
testcase_49 AC 1,467 ms
82,220 KB
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 134 ms
16,652 KB
testcase_56 TLE -
testcase_57 TLE -
testcase_58 AC 29 ms
10,240 KB
testcase_59 AC 27 ms
137,104 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