結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2019-11-29 22:22:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 654 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,784 KB
最終ジャッジ日時 2024-11-20 23:32:00
合計ジャッジ時間 111,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 420 ms
16,000 KB
testcase_01 TLE -
testcase_02 AC 194 ms
16,000 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 414 ms
21,888 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 28 ms
16,000 KB
testcase_13 AC 29 ms
21,760 KB
testcase_14 AC 28 ms
16,128 KB
testcase_15 AC 28 ms
21,760 KB
testcase_16 AC 29 ms
16,128 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 677 ms
21,888 KB
testcase_22 AC 173 ms
16,256 KB
testcase_23 AC 32 ms
22,016 KB
testcase_24 AC 63 ms
15,872 KB
testcase_25 AC 65 ms
21,504 KB
testcase_26 AC 32 ms
15,872 KB
testcase_27 AC 29 ms
17,572 KB
testcase_28 AC 58 ms
15,872 KB
testcase_29 AC 90 ms
21,760 KB
testcase_30 AC 56 ms
16,000 KB
testcase_31 AC 51 ms
21,760 KB
testcase_32 AC 81 ms
15,872 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 1,064 ms
16,000 KB
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 326 ms
21,632 KB
testcase_56 TLE -
testcase_57 TLE -
testcase_58 AC 27 ms
10,752 KB
testcase_59 AC 28 ms
21,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

S = input()

A = list(map(int,input().split()))
AS = [0]

for i in range(N):
    AS.append(AS[-1] + A[i])

AS.append(float("inf"))

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

Q = int(input())
K = list(map(int,input().split()))

for loop in range(Q):

    nk = K[loop]
    nans = 0

    for root in range(N):

        l = root
        r = N + 1

        while r - l != 1:

            m = (l+r) // 2
            if AS[m] - AS[root] > nk:
                r = m
            else:
                l = m

        nans = max(nans , SS[l] - SS[root] )

    print (nans)
0