結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー ntudantuda
提出日時 2024-12-30 00:06:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 924 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,964 KB
最終ジャッジ日時 2024-12-30 00:06:32
合計ジャッジ時間 23,136 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
75,520 KB
testcase_01 AC 253 ms
75,904 KB
testcase_02 AC 103 ms
75,520 KB
testcase_03 AC 307 ms
76,544 KB
testcase_04 AC 329 ms
76,452 KB
testcase_05 AC 103 ms
75,520 KB
testcase_06 AC 453 ms
75,904 KB
testcase_07 AC 447 ms
76,304 KB
testcase_08 AC 924 ms
76,840 KB
testcase_09 AC 555 ms
76,688 KB
testcase_10 AC 658 ms
76,068 KB
testcase_11 AC 810 ms
76,068 KB
testcase_12 AC 46 ms
51,968 KB
testcase_13 AC 47 ms
52,352 KB
testcase_14 AC 46 ms
51,712 KB
testcase_15 AC 48 ms
51,584 KB
testcase_16 AC 45 ms
52,096 KB
testcase_17 AC 540 ms
76,416 KB
testcase_18 AC 244 ms
76,052 KB
testcase_19 AC 506 ms
76,288 KB
testcase_20 AC 415 ms
76,456 KB
testcase_21 AC 127 ms
75,904 KB
testcase_22 AC 89 ms
75,008 KB
testcase_23 AC 74 ms
65,408 KB
testcase_24 AC 87 ms
74,880 KB
testcase_25 AC 89 ms
75,520 KB
testcase_26 AC 68 ms
61,568 KB
testcase_27 AC 56 ms
58,496 KB
testcase_28 AC 76 ms
72,448 KB
testcase_29 AC 88 ms
74,880 KB
testcase_30 AC 74 ms
70,656 KB
testcase_31 AC 76 ms
70,400 KB
testcase_32 AC 86 ms
75,264 KB
testcase_33 AC 428 ms
76,336 KB
testcase_34 AC 730 ms
75,936 KB
testcase_35 AC 620 ms
76,704 KB
testcase_36 AC 211 ms
75,912 KB
testcase_37 AC 451 ms
76,308 KB
testcase_38 AC 421 ms
76,672 KB
testcase_39 AC 729 ms
76,656 KB
testcase_40 AC 763 ms
76,964 KB
testcase_41 AC 768 ms
76,580 KB
testcase_42 AC 587 ms
76,564 KB
testcase_43 AC 839 ms
76,840 KB
testcase_44 AC 300 ms
76,416 KB
testcase_45 AC 782 ms
75,824 KB
testcase_46 AC 156 ms
75,904 KB
testcase_47 AC 353 ms
76,416 KB
testcase_48 AC 322 ms
76,172 KB
testcase_49 AC 322 ms
75,648 KB
testcase_50 AC 394 ms
75,968 KB
testcase_51 AC 494 ms
75,912 KB
testcase_52 AC 467 ms
76,816 KB
testcase_53 AC 730 ms
76,708 KB
testcase_54 AC 218 ms
76,288 KB
testcase_55 AC 107 ms
75,776 KB
testcase_56 AC 553 ms
76,568 KB
testcase_57 AC 430 ms
76,428 KB
testcase_58 AC 46 ms
51,840 KB
testcase_59 AC 49 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect
from itertools import accumulate

N = int(input())
S = input()
A = [0] + list(map(int, input().split()))
Q = int(input())
K = list(map(int, input().split()))
AA = list(accumulate(A))
SA = [0] * (N + 2)
for i, s in enumerate(S):
    if s == "E":
        SA[i + 1] = SA[i] + 1
    else:
        SA[i + 1] = SA[i]
for k in K:
    ans = 0
    for i in range(N):
        aa = AA[i]
        sa = SA[i]
        x = bisect(AA, k + aa) - 1
        ans = max(ans, SA[x] - sa)
    print(ans)
0