結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー timitimi
提出日時 2020-10-26 13:45:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-07-21 21:21:38
合計ジャッジ時間 42,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
11,008 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 474 ms
11,136 KB
testcase_04 AC 904 ms
11,136 KB
testcase_05 AC 458 ms
11,008 KB
testcase_06 AC 505 ms
11,264 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1,718 ms
11,392 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 WA -
testcase_16 AC 29 ms
10,880 KB
testcase_17 WA -
testcase_18 AC 1,064 ms
11,264 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 399 ms
10,880 KB
testcase_23 WA -
testcase_24 AC 43 ms
11,008 KB
testcase_25 AC 43 ms
11,008 KB
testcase_26 AC 42 ms
11,008 KB
testcase_27 WA -
testcase_28 AC 35 ms
10,752 KB
testcase_29 AC 39 ms
10,880 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 45 ms
11,008 KB
testcase_33 AC 1,716 ms
11,264 KB
testcase_34 AC 1,191 ms
11,264 KB
testcase_35 AC 1,309 ms
11,264 KB
testcase_36 AC 558 ms
11,136 KB
testcase_37 AC 1,459 ms
11,264 KB
testcase_38 AC 513 ms
11,136 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 1,366 ms
11,264 KB
testcase_42 AC 1,492 ms
11,264 KB
testcase_43 WA -
testcase_44 AC 162 ms
11,008 KB
testcase_45 AC 1,890 ms
11,264 KB
testcase_46 AC 76 ms
10,880 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 1,078 ms
11,136 KB
testcase_51 AC 865 ms
11,136 KB
testcase_52 AC 811 ms
11,264 KB
testcase_53 AC 1,931 ms
11,264 KB
testcase_54 WA -
testcase_55 AC 68 ms
11,008 KB
testcase_56 AC 1,214 ms
11,392 KB
testcase_57 AC 686 ms
11,136 KB
testcase_58 AC 30 ms
10,752 KB
testcase_59 AC 29 ms
10,752 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=[]
for i in D:
    ans.append(D[i])
import bisect
for i in range(Q):
    f=bisect.bisect_right(ans[:-1],K[i])
    print(f)
0