結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-07 22:26:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 74,292 KB
最終ジャッジ日時 2024-07-07 04:29:20
合計ジャッジ時間 6,230 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
70,128 KB
testcase_01 AC 68 ms
68,724 KB
testcase_02 AC 47 ms
60,656 KB
testcase_03 AC 59 ms
65,104 KB
testcase_04 AC 57 ms
63,588 KB
testcase_05 AC 49 ms
62,204 KB
testcase_06 AC 77 ms
69,264 KB
testcase_07 AC 87 ms
70,288 KB
testcase_08 AC 93 ms
72,232 KB
testcase_09 AC 99 ms
70,464 KB
testcase_10 AC 111 ms
71,104 KB
testcase_11 AC 85 ms
70,436 KB
testcase_12 AC 38 ms
53,532 KB
testcase_13 AC 37 ms
52,432 KB
testcase_14 AC 37 ms
53,884 KB
testcase_15 AC 37 ms
52,400 KB
testcase_16 AC 37 ms
52,260 KB
testcase_17 AC 134 ms
69,496 KB
testcase_18 AC 64 ms
68,500 KB
testcase_19 AC 102 ms
74,292 KB
testcase_20 AC 72 ms
70,116 KB
testcase_21 AC 49 ms
62,408 KB
testcase_22 AC 48 ms
61,872 KB
testcase_23 AC 43 ms
59,248 KB
testcase_24 AC 45 ms
59,824 KB
testcase_25 AC 44 ms
60,444 KB
testcase_26 AC 43 ms
60,072 KB
testcase_27 AC 37 ms
52,412 KB
testcase_28 AC 43 ms
58,788 KB
testcase_29 AC 44 ms
61,036 KB
testcase_30 AC 42 ms
60,208 KB
testcase_31 AC 43 ms
60,464 KB
testcase_32 AC 43 ms
60,208 KB
testcase_33 AC 62 ms
66,176 KB
testcase_34 AC 79 ms
71,012 KB
testcase_35 AC 78 ms
69,640 KB
testcase_36 AC 55 ms
64,152 KB
testcase_37 AC 63 ms
66,540 KB
testcase_38 AC 73 ms
69,272 KB
testcase_39 AC 85 ms
70,876 KB
testcase_40 AC 81 ms
70,440 KB
testcase_41 AC 112 ms
71,108 KB
testcase_42 AC 75 ms
69,076 KB
testcase_43 AC 84 ms
70,908 KB
testcase_44 AC 140 ms
70,900 KB
testcase_45 AC 84 ms
71,444 KB
testcase_46 AC 57 ms
67,080 KB
testcase_47 AC 86 ms
71,716 KB
testcase_48 AC 68 ms
64,920 KB
testcase_49 AC 86 ms
71,688 KB
testcase_50 AC 64 ms
66,864 KB
testcase_51 AC 75 ms
70,008 KB
testcase_52 AC 73 ms
70,172 KB
testcase_53 AC 79 ms
70,944 KB
testcase_54 AC 56 ms
65,912 KB
testcase_55 AC 49 ms
62,424 KB
testcase_56 AC 77 ms
71,324 KB
testcase_57 AC 86 ms
70,024 KB
testcase_58 AC 36 ms
52,352 KB
testcase_59 AC 37 ms
52,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
A = list(map(int,input().split()))
q = int(input())
K = list(map(int,input().split()))
sK = sorted([[k,i] for i,k in enumerate(K)])
ans = [0]*q
for i in range(n):
    num = 0
    now = i
    hp = 0
    for k,ind in sK:
        while now < n and hp+A[now] <= k:
            hp += A[now]
            if S[now] == "E":
                num += 1
            
            now += 1
        ans[ind] = max(ans[ind],num)

for i in ans:
    print(i)
0