結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー kohei2019kohei2019
提出日時 2022-05-14 17:03:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,526 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,956 KB
実行使用メモリ 77,912 KB
最終ジャッジ日時 2024-07-23 03:00:55
合計ジャッジ時間 35,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
76,600 KB
testcase_01 AC 410 ms
77,008 KB
testcase_02 AC 108 ms
76,480 KB
testcase_03 AC 445 ms
76,616 KB
testcase_04 AC 522 ms
77,480 KB
testcase_05 AC 112 ms
76,100 KB
testcase_06 AC 754 ms
76,700 KB
testcase_07 AC 700 ms
76,904 KB
testcase_08 AC 1,526 ms
77,284 KB
testcase_09 AC 967 ms
76,772 KB
testcase_10 AC 1,134 ms
76,972 KB
testcase_11 AC 1,435 ms
77,288 KB
testcase_12 AC 40 ms
53,216 KB
testcase_13 AC 39 ms
52,396 KB
testcase_14 AC 38 ms
52,984 KB
testcase_15 AC 39 ms
52,652 KB
testcase_16 AC 39 ms
52,828 KB
testcase_17 AC 1,055 ms
76,912 KB
testcase_18 AC 369 ms
76,812 KB
testcase_19 AC 859 ms
77,052 KB
testcase_20 AC 623 ms
77,336 KB
testcase_21 AC 157 ms
76,756 KB
testcase_22 AC 90 ms
75,964 KB
testcase_23 AC 74 ms
74,096 KB
testcase_24 AC 79 ms
76,100 KB
testcase_25 AC 81 ms
75,688 KB
testcase_26 AC 60 ms
67,004 KB
testcase_27 AC 50 ms
60,844 KB
testcase_28 AC 78 ms
75,876 KB
testcase_29 AC 88 ms
76,104 KB
testcase_30 AC 78 ms
75,720 KB
testcase_31 AC 77 ms
75,692 KB
testcase_32 AC 83 ms
75,808 KB
testcase_33 AC 713 ms
77,424 KB
testcase_34 AC 1,208 ms
77,628 KB
testcase_35 AC 1,085 ms
77,628 KB
testcase_36 AC 315 ms
77,468 KB
testcase_37 AC 698 ms
77,172 KB
testcase_38 AC 705 ms
76,776 KB
testcase_39 AC 1,231 ms
77,472 KB
testcase_40 AC 1,397 ms
77,460 KB
testcase_41 AC 1,326 ms
77,912 KB
testcase_42 AC 1,056 ms
77,684 KB
testcase_43 AC 1,392 ms
77,692 KB
testcase_44 AC 517 ms
76,696 KB
testcase_45 AC 1,382 ms
77,332 KB
testcase_46 AC 213 ms
76,532 KB
testcase_47 AC 598 ms
76,900 KB
testcase_48 AC 462 ms
76,708 KB
testcase_49 AC 530 ms
76,848 KB
testcase_50 AC 635 ms
76,824 KB
testcase_51 AC 774 ms
76,964 KB
testcase_52 AC 757 ms
76,836 KB
testcase_53 AC 1,217 ms
77,084 KB
testcase_54 AC 317 ms
76,768 KB
testcase_55 AC 120 ms
76,312 KB
testcase_56 AC 952 ms
77,444 KB
testcase_57 AC 663 ms
77,036 KB
testcase_58 AC 39 ms
53,260 KB
testcase_59 AC 39 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N = int(input())
S = input()
lsA = list(map(int,input().split()))
Q = int(input())
lsK = list(map(int,input().split()))

ll = [0]
for i in range(N):
    if S[i] == 'E':
        ll.append(ll[-1]+1)
    else:
        ll.append(ll[-1])

lssum = [0]
for i in range(N):
    lssum.append(lssum[-1]+lsA[i])

for i in range(Q):
    q = lsK[i]
    ans = 0
    for j in range(1,N+1):
        d = lssum[j]
        v = d - q
        ind = bisect.bisect_left(lssum, v)
        ecnt1 = ll[j]-ll[ind]

        d = lssum[j-1]
        v = d+q
        ind = bisect.bisect_right(lssum, v)
        ecnt2 = ll[ind-1]-ll[j-1]
        ans = max(ans,ecnt1,ecnt2)
    print(ans)
0