結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー tails1434tails1434
提出日時 2019-12-23 21:26:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 648 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 74,880 KB
最終ジャッジ日時 2024-09-19 00:34:33
合計ジャッジ時間 6,481 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 77 ms
68,224 KB
testcase_07 WA -
testcase_08 AC 108 ms
73,600 KB
testcase_09 AC 85 ms
70,784 KB
testcase_10 AC 85 ms
71,552 KB
testcase_11 WA -
testcase_12 AC 43 ms
51,968 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 43 ms
51,840 KB
testcase_15 WA -
testcase_16 AC 44 ms
52,352 KB
testcase_17 AC 102 ms
70,528 KB
testcase_18 AC 84 ms
66,944 KB
testcase_19 AC 82 ms
69,632 KB
testcase_20 AC 82 ms
67,968 KB
testcase_21 AC 65 ms
63,872 KB
testcase_22 AC 56 ms
60,672 KB
testcase_23 WA -
testcase_24 AC 53 ms
60,160 KB
testcase_25 AC 52 ms
59,392 KB
testcase_26 AC 51 ms
59,264 KB
testcase_27 AC 48 ms
58,240 KB
testcase_28 WA -
testcase_29 AC 53 ms
59,648 KB
testcase_30 AC 51 ms
59,136 KB
testcase_31 AC 50 ms
58,752 KB
testcase_32 AC 50 ms
59,520 KB
testcase_33 AC 82 ms
68,224 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 66 ms
64,896 KB
testcase_37 AC 92 ms
68,736 KB
testcase_38 AC 76 ms
68,736 KB
testcase_39 WA -
testcase_40 AC 102 ms
73,216 KB
testcase_41 AC 101 ms
72,960 KB
testcase_42 AC 91 ms
72,576 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 77 ms
68,864 KB
testcase_48 AC 75 ms
66,176 KB
testcase_49 AC 79 ms
68,864 KB
testcase_50 AC 78 ms
67,200 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 111 ms
74,880 KB
testcase_54 AC 78 ms
66,304 KB
testcase_55 AC 54 ms
60,672 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 42 ms
52,224 KB
testcase_59 AC 42 ms
51,712 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(d-1) 



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