結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー Yukino DX.Yukino DX.
提出日時 2023-11-23 22:06:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-26 08:21:07
合計ジャッジ時間 10,097 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
77,440 KB
testcase_01 AC 129 ms
76,784 KB
testcase_02 AC 77 ms
70,784 KB
testcase_03 AC 114 ms
76,544 KB
testcase_04 AC 135 ms
76,752 KB
testcase_05 AC 68 ms
67,584 KB
testcase_06 AC 162 ms
77,440 KB
testcase_07 AC 167 ms
76,988 KB
testcase_08 AC 244 ms
77,100 KB
testcase_09 AC 189 ms
77,408 KB
testcase_10 AC 206 ms
77,380 KB
testcase_11 AC 203 ms
77,184 KB
testcase_12 AC 42 ms
53,504 KB
testcase_13 AC 44 ms
53,504 KB
testcase_14 AC 43 ms
53,248 KB
testcase_15 AC 43 ms
53,632 KB
testcase_16 AC 42 ms
53,120 KB
testcase_17 AC 116 ms
76,672 KB
testcase_18 AC 124 ms
76,928 KB
testcase_19 AC 187 ms
76,800 KB
testcase_20 AC 160 ms
76,724 KB
testcase_21 AC 98 ms
77,056 KB
testcase_22 AC 68 ms
68,608 KB
testcase_23 AC 62 ms
65,536 KB
testcase_24 AC 75 ms
69,888 KB
testcase_25 AC 76 ms
70,400 KB
testcase_26 AC 53 ms
61,952 KB
testcase_27 AC 44 ms
53,632 KB
testcase_28 AC 74 ms
71,040 KB
testcase_29 AC 78 ms
70,528 KB
testcase_30 AC 67 ms
67,072 KB
testcase_31 AC 65 ms
66,816 KB
testcase_32 AC 61 ms
65,280 KB
testcase_33 AC 197 ms
77,380 KB
testcase_34 AC 226 ms
77,056 KB
testcase_35 AC 222 ms
77,636 KB
testcase_36 AC 123 ms
77,128 KB
testcase_37 AC 179 ms
77,004 KB
testcase_38 AC 175 ms
76,800 KB
testcase_39 AC 239 ms
77,440 KB
testcase_40 AC 233 ms
77,696 KB
testcase_41 AC 229 ms
76,928 KB
testcase_42 AC 207 ms
76,928 KB
testcase_43 AC 277 ms
77,516 KB
testcase_44 AC 142 ms
76,928 KB
testcase_45 AC 247 ms
76,928 KB
testcase_46 AC 109 ms
77,056 KB
testcase_47 AC 162 ms
76,772 KB
testcase_48 AC 141 ms
76,672 KB
testcase_49 AC 143 ms
77,056 KB
testcase_50 AC 161 ms
76,928 KB
testcase_51 AC 179 ms
77,048 KB
testcase_52 AC 174 ms
76,928 KB
testcase_53 AC 233 ms
77,104 KB
testcase_54 AC 133 ms
76,792 KB
testcase_55 AC 81 ms
72,320 KB
testcase_56 AC 203 ms
76,860 KB
testcase_57 AC 160 ms
77,184 KB
testcase_58 AC 41 ms
53,760 KB
testcase_59 AC 44 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
s = input()
a = list(map(int, input().split()))
q = int(input())
k = list(map(int, input().split()))

for ki in k:
    q = deque()
    sum, cnt, ans = 0, 0, 0
    for i in range(n):
        q.append(i)
        if s[i] == "E":
            cnt += 1
        sum += a[i]

        while sum > ki and q:
            id = q.popleft()
            sum -= a[id]
            if s[id] == "E":
                cnt -= 1

        ans = max(ans, cnt)

    print(ans)
0