結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー rkyiolklorkyiolklo
提出日時 2020-05-03 20:18:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 77,060 KB
最終ジャッジ日時 2024-06-22 18:20:59
合計ジャッジ時間 17,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
76,616 KB
testcase_01 AC 186 ms
76,804 KB
testcase_02 AC 74 ms
75,632 KB
testcase_03 AC 212 ms
76,044 KB
testcase_04 AC 263 ms
76,360 KB
testcase_05 AC 71 ms
75,580 KB
testcase_06 AC 340 ms
76,180 KB
testcase_07 AC 314 ms
76,636 KB
testcase_08 AC 685 ms
76,560 KB
testcase_09 AC 451 ms
76,272 KB
testcase_10 AC 524 ms
76,412 KB
testcase_11 AC 636 ms
76,412 KB
testcase_12 AC 36 ms
53,068 KB
testcase_13 AC 37 ms
52,828 KB
testcase_14 AC 36 ms
53,184 KB
testcase_15 AC 39 ms
53,144 KB
testcase_16 AC 42 ms
53,260 KB
testcase_17 AC 407 ms
76,768 KB
testcase_18 AC 199 ms
76,204 KB
testcase_19 AC 374 ms
76,724 KB
testcase_20 AC 293 ms
76,516 KB
testcase_21 AC 94 ms
76,200 KB
testcase_22 AC 65 ms
75,744 KB
testcase_23 AC 54 ms
67,396 KB
testcase_24 AC 59 ms
75,548 KB
testcase_25 AC 59 ms
75,488 KB
testcase_26 AC 50 ms
63,352 KB
testcase_27 AC 44 ms
59,416 KB
testcase_28 AC 58 ms
73,956 KB
testcase_29 AC 65 ms
75,656 KB
testcase_30 AC 52 ms
72,288 KB
testcase_31 AC 57 ms
71,488 KB
testcase_32 AC 62 ms
75,804 KB
testcase_33 AC 319 ms
76,364 KB
testcase_34 AC 542 ms
76,904 KB
testcase_35 AC 478 ms
76,400 KB
testcase_36 AC 154 ms
76,084 KB
testcase_37 AC 314 ms
76,756 KB
testcase_38 AC 312 ms
76,580 KB
testcase_39 AC 562 ms
76,524 KB
testcase_40 AC 604 ms
76,404 KB
testcase_41 AC 606 ms
76,652 KB
testcase_42 AC 459 ms
76,536 KB
testcase_43 AC 638 ms
77,060 KB
testcase_44 AC 242 ms
76,308 KB
testcase_45 AC 613 ms
76,436 KB
testcase_46 AC 108 ms
76,416 KB
testcase_47 AC 273 ms
76,456 KB
testcase_48 AC 229 ms
76,516 KB
testcase_49 AC 253 ms
76,352 KB
testcase_50 AC 327 ms
76,248 KB
testcase_51 AC 352 ms
76,404 KB
testcase_52 AC 337 ms
76,520 KB
testcase_53 AC 550 ms
76,816 KB
testcase_54 AC 156 ms
76,328 KB
testcase_55 AC 73 ms
76,104 KB
testcase_56 AC 428 ms
76,512 KB
testcase_57 AC 298 ms
76,380 KB
testcase_58 AC 36 ms
53,616 KB
testcase_59 AC 35 ms
53,368 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