結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー tails1434tails1434
提出日時 2019-12-23 21:30:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 75,332 KB
最終ジャッジ日時 2024-09-19 00:40:10
合計ジャッジ時間 5,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
67,328 KB
testcase_01 AC 65 ms
68,864 KB
testcase_02 AC 49 ms
61,696 KB
testcase_03 AC 57 ms
65,152 KB
testcase_04 AC 74 ms
67,328 KB
testcase_05 AC 49 ms
61,952 KB
testcase_06 AC 66 ms
68,864 KB
testcase_07 AC 82 ms
70,912 KB
testcase_08 AC 94 ms
74,112 KB
testcase_09 AC 72 ms
70,656 KB
testcase_10 AC 73 ms
71,424 KB
testcase_11 AC 89 ms
72,832 KB
testcase_12 AC 36 ms
52,352 KB
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 35 ms
52,352 KB
testcase_15 AC 35 ms
51,712 KB
testcase_16 AC 35 ms
52,608 KB
testcase_17 AC 86 ms
70,656 KB
testcase_18 AC 72 ms
67,528 KB
testcase_19 AC 69 ms
69,376 KB
testcase_20 AC 69 ms
68,608 KB
testcase_21 AC 54 ms
63,916 KB
testcase_22 AC 51 ms
60,800 KB
testcase_23 AC 37 ms
52,608 KB
testcase_24 AC 44 ms
60,544 KB
testcase_25 AC 43 ms
59,904 KB
testcase_26 AC 42 ms
59,392 KB
testcase_27 AC 40 ms
58,240 KB
testcase_28 AC 41 ms
58,752 KB
testcase_29 AC 45 ms
60,544 KB
testcase_30 AC 44 ms
60,288 KB
testcase_31 AC 43 ms
58,752 KB
testcase_32 AC 44 ms
59,648 KB
testcase_33 AC 72 ms
68,736 KB
testcase_34 AC 76 ms
72,192 KB
testcase_35 AC 76 ms
71,936 KB
testcase_36 AC 57 ms
64,384 KB
testcase_37 AC 82 ms
69,120 KB
testcase_38 AC 69 ms
69,568 KB
testcase_39 AC 98 ms
73,600 KB
testcase_40 AC 90 ms
72,960 KB
testcase_41 AC 88 ms
73,232 KB
testcase_42 AC 79 ms
73,088 KB
testcase_43 AC 92 ms
73,984 KB
testcase_44 AC 69 ms
69,760 KB
testcase_45 AC 86 ms
74,332 KB
testcase_46 AC 58 ms
65,536 KB
testcase_47 AC 68 ms
70,016 KB
testcase_48 AC 65 ms
66,688 KB
testcase_49 AC 69 ms
68,864 KB
testcase_50 AC 68 ms
68,224 KB
testcase_51 AC 73 ms
70,400 KB
testcase_52 AC 71 ms
70,736 KB
testcase_53 AC 98 ms
75,332 KB
testcase_54 AC 69 ms
66,688 KB
testcase_55 AC 50 ms
60,928 KB
testcase_56 AC 85 ms
72,704 KB
testcase_57 AC 70 ms
70,144 KB
testcase_58 AC 36 ms
52,480 KB
testcase_59 AC 35 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
from bisect import bisect_right

def main():
    N = int(input())
    S = input()
    A = list(map(int, input().split()))
    Q = int(input())
    K = list(map(int, input().split()))
    B = [0] + list(accumulate(A))
    C = [0] * (N + 1)
    for i in range(N):
        if S[i] == 'E':
            C[i+1] = C[i] + 1
        else:
            C[i+1] = C[i]

    P = [float('inf')] * (max(C) + 1)
    for i in range(N+1):
        for j in range(i+1,N+1):
            P[C[j]-C[i]] = min(P[C[j]-C[i]], B[j]-B[i])
    for k in K:
        d = bisect_right(P,k)
        print(max(0,d-1)) 



if __name__ == "__main__":
    main()
0