結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー H20H20
提出日時 2021-02-03 10:23:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 71,424 KB
最終ジャッジ日時 2024-06-30 00:13:25
合計ジャッジ時間 5,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
67,072 KB
testcase_01 AC 63 ms
67,968 KB
testcase_02 AC 48 ms
60,416 KB
testcase_03 AC 58 ms
64,896 KB
testcase_04 AC 72 ms
65,536 KB
testcase_05 AC 52 ms
61,568 KB
testcase_06 AC 67 ms
68,736 KB
testcase_07 AC 74 ms
69,376 KB
testcase_08 AC 96 ms
70,784 KB
testcase_09 AC 81 ms
69,504 KB
testcase_10 AC 81 ms
70,400 KB
testcase_11 AC 91 ms
71,168 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 39 ms
52,608 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 37 ms
52,352 KB
testcase_17 AC 95 ms
71,040 KB
testcase_18 AC 72 ms
65,152 KB
testcase_19 AC 66 ms
68,608 KB
testcase_20 AC 82 ms
66,560 KB
testcase_21 AC 52 ms
62,720 KB
testcase_22 AC 49 ms
60,800 KB
testcase_23 AC 43 ms
57,984 KB
testcase_24 AC 46 ms
59,776 KB
testcase_25 AC 46 ms
60,032 KB
testcase_26 AC 45 ms
59,392 KB
testcase_27 AC 43 ms
58,752 KB
testcase_28 AC 45 ms
59,776 KB
testcase_29 AC 47 ms
60,032 KB
testcase_30 AC 47 ms
59,648 KB
testcase_31 AC 45 ms
59,008 KB
testcase_32 AC 47 ms
60,416 KB
testcase_33 AC 86 ms
66,688 KB
testcase_34 AC 85 ms
70,784 KB
testcase_35 AC 86 ms
70,272 KB
testcase_36 AC 63 ms
65,280 KB
testcase_37 AC 81 ms
66,688 KB
testcase_38 AC 67 ms
69,504 KB
testcase_39 AC 85 ms
70,912 KB
testcase_40 AC 88 ms
71,168 KB
testcase_41 AC 86 ms
71,296 KB
testcase_42 AC 90 ms
70,784 KB
testcase_43 AC 87 ms
71,424 KB
testcase_44 AC 64 ms
69,120 KB
testcase_45 AC 96 ms
71,296 KB
testcase_46 AC 55 ms
65,024 KB
testcase_47 AC 65 ms
68,608 KB
testcase_48 AC 74 ms
65,408 KB
testcase_49 AC 66 ms
68,352 KB
testcase_50 AC 76 ms
67,072 KB
testcase_51 AC 80 ms
70,016 KB
testcase_52 AC 78 ms
70,272 KB
testcase_53 AC 97 ms
71,424 KB
testcase_54 AC 67 ms
64,512 KB
testcase_55 AC 49 ms
61,568 KB
testcase_56 AC 85 ms
70,400 KB
testcase_57 AC 75 ms
69,248 KB
testcase_58 AC 39 ms
52,224 KB
testcase_59 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import itertools
E = [10**9]*2001
E[0] = 0
N = int(input())
S = input()
L=[]
for i in range(N):
    if S[i]=='E':
        L.append(1)
    else:
        L.append(0)
A = list(map(int,input().split()))
EC = list(itertools.accumulate(L))+[0]
AC = list(itertools.accumulate(A))+[0]
for i in range(N):
    for j in range(i,N):
        e = EC[j] - EC[i-1]
        a = AC[j] - AC[i-1]
        E[e] = min(E[e],a)



Q = int(input())
K = list(map(int,input().split()))
for i in range(Q):
    print( bisect.bisect_right(E, K[i]) - 1)
0