結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー ttrttr
提出日時 2020-02-02 16:47:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 807 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,976 KB
最終ジャッジ日時 2024-09-18 21:14:57
合計ジャッジ時間 20,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
75,968 KB
testcase_01 AC 230 ms
76,032 KB
testcase_02 AC 90 ms
75,648 KB
testcase_03 AC 255 ms
76,288 KB
testcase_04 AC 301 ms
76,172 KB
testcase_05 AC 84 ms
75,136 KB
testcase_06 AC 405 ms
76,160 KB
testcase_07 AC 381 ms
76,184 KB
testcase_08 AC 807 ms
76,336 KB
testcase_09 AC 523 ms
76,440 KB
testcase_10 AC 618 ms
76,960 KB
testcase_11 AC 767 ms
76,776 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 41 ms
51,840 KB
testcase_14 AC 41 ms
51,712 KB
testcase_15 AC 42 ms
52,224 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 576 ms
76,512 KB
testcase_18 AC 224 ms
76,400 KB
testcase_19 AC 454 ms
76,288 KB
testcase_20 AC 344 ms
76,416 KB
testcase_21 AC 101 ms
76,156 KB
testcase_22 AC 69 ms
75,264 KB
testcase_23 AC 58 ms
65,664 KB
testcase_24 AC 63 ms
75,776 KB
testcase_25 AC 64 ms
75,532 KB
testcase_26 AC 53 ms
62,336 KB
testcase_27 AC 51 ms
58,624 KB
testcase_28 AC 60 ms
72,832 KB
testcase_29 AC 71 ms
75,392 KB
testcase_30 AC 61 ms
71,936 KB
testcase_31 AC 60 ms
70,528 KB
testcase_32 AC 65 ms
75,520 KB
testcase_33 AC 385 ms
76,140 KB
testcase_34 AC 650 ms
76,708 KB
testcase_35 AC 585 ms
76,196 KB
testcase_36 AC 188 ms
76,160 KB
testcase_37 AC 393 ms
76,508 KB
testcase_38 AC 391 ms
76,160 KB
testcase_39 AC 684 ms
76,204 KB
testcase_40 AC 728 ms
76,220 KB
testcase_41 AC 734 ms
76,976 KB
testcase_42 AC 553 ms
76,200 KB
testcase_43 AC 743 ms
76,344 KB
testcase_44 AC 290 ms
76,416 KB
testcase_45 AC 734 ms
76,944 KB
testcase_46 AC 133 ms
76,028 KB
testcase_47 AC 329 ms
76,032 KB
testcase_48 AC 268 ms
76,416 KB
testcase_49 AC 292 ms
76,272 KB
testcase_50 AC 357 ms
76,416 KB
testcase_51 AC 425 ms
76,568 KB
testcase_52 AC 422 ms
76,640 KB
testcase_53 AC 658 ms
76,312 KB
testcase_54 AC 194 ms
76,416 KB
testcase_55 AC 89 ms
76,296 KB
testcase_56 AC 521 ms
75,936 KB
testcase_57 AC 370 ms
76,828 KB
testcase_58 AC 43 ms
52,224 KB
testcase_59 AC 40 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N = int(input())
S = input()
A = [int(a) for a in input().split()]
Q = int(input())
K = [int(k) for k in input().split()]

for i in range(N-1):
    A[i+1] += A[i]
A = [0] + A

enemy = [0]*(N+1)
for i in range(N):
    if S[i] == "E":
        enemy[i+1] = 1
    enemy[i+1] += enemy[i]

for k in K:
    ans = 0
    for i in range(N):
        idx = bisect.bisect_right(A, k+A[i])
        ans = max(ans, enemy[idx-1]-enemy[i])
    print(ans)
0