結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー timitimi
提出日時 2020-10-26 14:00:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 77,196 KB
最終ジャッジ日時 2024-07-21 21:24:11
合計ジャッジ時間 6,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
67,564 KB
testcase_01 AC 69 ms
70,204 KB
testcase_02 AC 58 ms
62,220 KB
testcase_03 AC 68 ms
66,116 KB
testcase_04 AC 81 ms
69,200 KB
testcase_05 AC 58 ms
62,656 KB
testcase_06 AC 73 ms
69,632 KB
testcase_07 AC 98 ms
72,716 KB
testcase_08 AC 118 ms
75,432 KB
testcase_09 AC 115 ms
74,036 KB
testcase_10 AC 115 ms
73,760 KB
testcase_11 AC 110 ms
75,000 KB
testcase_12 AC 39 ms
52,928 KB
testcase_13 AC 38 ms
52,728 KB
testcase_14 AC 39 ms
53,284 KB
testcase_15 AC 38 ms
52,904 KB
testcase_16 AC 37 ms
53,852 KB
testcase_17 AC 114 ms
72,436 KB
testcase_18 AC 85 ms
67,780 KB
testcase_19 AC 79 ms
70,976 KB
testcase_20 AC 122 ms
69,996 KB
testcase_21 AC 55 ms
64,664 KB
testcase_22 AC 57 ms
62,340 KB
testcase_23 AC 39 ms
53,628 KB
testcase_24 AC 48 ms
62,532 KB
testcase_25 AC 46 ms
60,676 KB
testcase_26 AC 45 ms
59,812 KB
testcase_27 AC 44 ms
59,264 KB
testcase_28 AC 44 ms
60,868 KB
testcase_29 AC 47 ms
62,144 KB
testcase_30 AC 47 ms
60,420 KB
testcase_31 AC 45 ms
60,272 KB
testcase_32 AC 46 ms
59,932 KB
testcase_33 AC 102 ms
69,748 KB
testcase_34 AC 101 ms
74,104 KB
testcase_35 AC 99 ms
74,876 KB
testcase_36 AC 71 ms
67,932 KB
testcase_37 AC 99 ms
70,408 KB
testcase_38 AC 76 ms
70,392 KB
testcase_39 AC 124 ms
74,832 KB
testcase_40 AC 102 ms
74,840 KB
testcase_41 AC 128 ms
75,028 KB
testcase_42 AC 107 ms
75,544 KB
testcase_43 AC 125 ms
75,368 KB
testcase_44 AC 71 ms
70,744 KB
testcase_45 AC 150 ms
75,364 KB
testcase_46 AC 56 ms
65,816 KB
testcase_47 AC 73 ms
71,368 KB
testcase_48 AC 85 ms
70,196 KB
testcase_49 AC 84 ms
70,292 KB
testcase_50 AC 89 ms
70,656 KB
testcase_51 AC 89 ms
74,308 KB
testcase_52 AC 86 ms
72,196 KB
testcase_53 AC 124 ms
77,196 KB
testcase_54 AC 80 ms
67,080 KB
testcase_55 AC 50 ms
62,404 KB
testcase_56 AC 101 ms
74,820 KB
testcase_57 AC 98 ms
72,936 KB
testcase_58 AC 38 ms
52,480 KB
testcase_59 AC 40 ms
52,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
A=list(map(int, input().split()))
Q=int(input())
K=list(map(int, input().split()))
E=[0]
H=[0]
e=0
if S=='W'*N:
    for i in range(Q):
        print(0)
    exit()
for i in S:
    if i=='E':
        e+=1 
    E.append(e)
for i in range(N):
    H.append(H[-1]+A[i])
D={}
for l in range(N):
    for r in range(l,N):
        e=E[r+1]-E[l]
        h=H[r+1]-H[l]
        if e not in D:
            D[e]=h
        else:
            D[e]=min(D[e],h)
ans=[]
t=S.count('E')
for i in range(1,t+1):
    ans.append(D[i])
import bisect
for i in range(Q):
    f=bisect.bisect_right(ans,K[i])
    print(f)
0