結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー MitarushiMitarushi
提出日時 2020-08-22 00:56:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 465 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 76,828 KB
最終ジャッジ日時 2024-10-15 06:36:26
合計ジャッジ時間 13,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,152 KB
testcase_01 AC 143 ms
76,544 KB
testcase_02 AC 69 ms
75,648 KB
testcase_03 AC 147 ms
75,776 KB
testcase_04 AC 173 ms
76,308 KB
testcase_05 AC 68 ms
75,648 KB
testcase_06 AC 233 ms
76,828 KB
testcase_07 AC 239 ms
76,472 KB
testcase_08 AC 447 ms
76,704 KB
testcase_09 AC 311 ms
76,172 KB
testcase_10 AC 348 ms
76,640 KB
testcase_11 AC 422 ms
76,308 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 38 ms
51,712 KB
testcase_15 AC 38 ms
52,352 KB
testcase_16 AC 38 ms
51,584 KB
testcase_17 AC 465 ms
76,408 KB
testcase_18 AC 161 ms
76,296 KB
testcase_19 AC 423 ms
76,160 KB
testcase_20 AC 233 ms
76,056 KB
testcase_21 AC 102 ms
76,160 KB
testcase_22 AC 65 ms
75,136 KB
testcase_23 AC 55 ms
64,128 KB
testcase_24 AC 55 ms
70,784 KB
testcase_25 AC 55 ms
71,680 KB
testcase_26 AC 49 ms
61,312 KB
testcase_27 AC 44 ms
58,496 KB
testcase_28 AC 55 ms
70,016 KB
testcase_29 AC 62 ms
75,264 KB
testcase_30 AC 53 ms
68,480 KB
testcase_31 AC 53 ms
67,968 KB
testcase_32 AC 61 ms
75,008 KB
testcase_33 AC 238 ms
76,032 KB
testcase_34 AC 382 ms
76,524 KB
testcase_35 AC 341 ms
76,168 KB
testcase_36 AC 141 ms
76,308 KB
testcase_37 AC 245 ms
76,700 KB
testcase_38 AC 240 ms
76,152 KB
testcase_39 AC 384 ms
76,552 KB
testcase_40 AC 441 ms
76,080 KB
testcase_41 AC 422 ms
76,708 KB
testcase_42 AC 332 ms
76,792 KB
testcase_43 AC 403 ms
76,316 KB
testcase_44 AC 186 ms
76,032 KB
testcase_45 AC 404 ms
76,672 KB
testcase_46 AC 109 ms
76,160 KB
testcase_47 AC 206 ms
76,508 KB
testcase_48 AC 184 ms
75,900 KB
testcase_49 AC 196 ms
76,156 KB
testcase_50 AC 224 ms
76,316 KB
testcase_51 AC 277 ms
76,676 KB
testcase_52 AC 266 ms
76,556 KB
testcase_53 AC 393 ms
76,180 KB
testcase_54 AC 146 ms
76,288 KB
testcase_55 AC 80 ms
76,136 KB
testcase_56 AC 319 ms
76,820 KB
testcase_57 AC 232 ms
76,300 KB
testcase_58 AC 38 ms
51,840 KB
testcase_59 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
a = [int(i) for i in input().split()]

enemy = [0]
for i in s:
    enemy.append(enemy[-1] + (i == "E"))

hp = [0]
for i in a:
    hp.append(hp[-1] + i)


def max_ok(i, beam):
    ok = i
    ng = n+1
    while abs(ok-ng) > 1:
        m = (ok+ng)//2
        if hp[m] - hp[i] <= beam:
            ok = m
        else:
            ng = m
    return enemy[ok] - enemy[i]


q = int(input())
for k in [int(i) for i in input().split()]:
    ma = 0
    for i in range(n):
        ma = max(ma, max_ok(i, k))
    print(ma)
0