結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー O2MTO2MT
提出日時 2021-03-24 21:19:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 498 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 135,936 KB
最終ジャッジ日時 2024-11-26 23:25:08
合計ジャッジ時間 100,670 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
70,272 KB
testcase_01 AC 926 ms
133,504 KB
testcase_02 AC 117 ms
67,584 KB
testcase_03 AC 1,641 ms
131,456 KB
testcase_04 TLE -
testcase_05 AC 221 ms
67,328 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 37 ms
56,704 KB
testcase_13 AC 37 ms
115,968 KB
testcase_14 AC 38 ms
57,216 KB
testcase_15 AC 36 ms
118,400 KB
testcase_16 AC 37 ms
56,704 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 189 ms
130,688 KB
testcase_22 AC 120 ms
66,432 KB
testcase_23 AC 49 ms
127,872 KB
testcase_24 AC 55 ms
66,304 KB
testcase_25 AC 54 ms
127,872 KB
testcase_26 AC 46 ms
64,896 KB
testcase_27 AC 45 ms
127,872 KB
testcase_28 AC 51 ms
66,304 KB
testcase_29 AC 60 ms
130,432 KB
testcase_30 AC 52 ms
65,536 KB
testcase_31 AC 49 ms
127,360 KB
testcase_32 AC 57 ms
65,920 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 1,194 ms
72,704 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 1,272 ms
71,040 KB
testcase_45 TLE -
testcase_46 AC 289 ms
71,680 KB
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 AC 1,409 ms
67,712 KB
testcase_55 AC 128 ms
66,432 KB
testcase_56 TLE -
testcase_57 TLE -
testcase_58 AC 39 ms
52,224 KB
testcase_59 AC 39 ms
118,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
N = int(input())
S = list(str(input()))
A = list(map(int,input().split()))
Q = int(input())
K = list(map(int,input().split()))
sumA = [0]+list(accumulate(A))
E = [0]
for s in S:
    if s == 'E':
        E.append(1)
    else:
        E.append(0)
sumE = list(accumulate(E))
j = 0
for k in K:
    ans = 0
    for i in range(N+1):
        j = 0
        while j < N+1 and sumA[j]-sumA[i] <= k:
            ans = max(ans,sumE[j]-sumE[i])
            j += 1
    print(ans)
0