結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー ああいいああいい
提出日時 2022-03-13 22:45:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 76,984 KB
最終ジャッジ日時 2024-09-19 06:23:52
合計ジャッジ時間 6,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
76,468 KB
testcase_01 AC 56 ms
68,916 KB
testcase_02 AC 38 ms
60,516 KB
testcase_03 AC 51 ms
65,888 KB
testcase_04 AC 53 ms
66,608 KB
testcase_05 AC 40 ms
61,928 KB
testcase_06 AC 83 ms
76,628 KB
testcase_07 AC 82 ms
76,648 KB
testcase_08 AC 108 ms
76,504 KB
testcase_09 AC 90 ms
76,448 KB
testcase_10 AC 116 ms
76,984 KB
testcase_11 AC 155 ms
76,620 KB
testcase_12 AC 32 ms
52,240 KB
testcase_13 AC 33 ms
52,212 KB
testcase_14 AC 32 ms
52,392 KB
testcase_15 AC 32 ms
52,160 KB
testcase_16 AC 33 ms
52,736 KB
testcase_17 AC 131 ms
76,504 KB
testcase_18 AC 74 ms
75,616 KB
testcase_19 AC 103 ms
76,852 KB
testcase_20 AC 94 ms
76,232 KB
testcase_21 AC 57 ms
70,848 KB
testcase_22 AC 47 ms
64,572 KB
testcase_23 AC 45 ms
62,488 KB
testcase_24 AC 44 ms
63,344 KB
testcase_25 AC 45 ms
61,896 KB
testcase_26 AC 39 ms
58,456 KB
testcase_27 AC 33 ms
52,128 KB
testcase_28 AC 47 ms
62,908 KB
testcase_29 AC 43 ms
62,964 KB
testcase_30 AC 40 ms
62,424 KB
testcase_31 AC 43 ms
62,652 KB
testcase_32 AC 46 ms
63,656 KB
testcase_33 AC 89 ms
75,628 KB
testcase_34 AC 154 ms
76,756 KB
testcase_35 AC 115 ms
76,468 KB
testcase_36 AC 69 ms
75,704 KB
testcase_37 AC 103 ms
75,872 KB
testcase_38 AC 109 ms
76,800 KB
testcase_39 AC 156 ms
76,604 KB
testcase_40 AC 131 ms
76,564 KB
testcase_41 AC 130 ms
76,964 KB
testcase_42 AC 132 ms
76,600 KB
testcase_43 AC 128 ms
76,564 KB
testcase_44 AC 87 ms
76,640 KB
testcase_45 AC 129 ms
76,564 KB
testcase_46 AC 69 ms
75,452 KB
testcase_47 AC 100 ms
76,492 KB
testcase_48 AC 82 ms
75,836 KB
testcase_49 AC 94 ms
76,168 KB
testcase_50 AC 99 ms
75,776 KB
testcase_51 AC 101 ms
76,484 KB
testcase_52 AC 99 ms
76,540 KB
testcase_53 AC 121 ms
76,504 KB
testcase_54 AC 72 ms
75,780 KB
testcase_55 AC 55 ms
67,968 KB
testcase_56 AC 105 ms
76,424 KB
testcase_57 AC 93 ms
76,204 KB
testcase_58 AC 34 ms
52,316 KB
testcase_59 AC 33 ms
53,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

teki = [0] * (N + 1)
for i in range(N):
    teki[i+1] = teki[i]
    if S[i] == "E":
        teki[i+1] += 1
def calc(k):
    right = 0
    now = 0
    ans = 0
    for left in range(N):
        while right < N and now + A[right] <= k:
            now += A[right]
            right += 1
        count = teki[right] - teki[left]
        if count > ans:
            ans = count
        if left == right:
            right += 1
        else:
            now -= A[left]
    return ans
Q = int(input())
K = list(map(int,input().split()))
for k in K:
    print(calc(k))
0