結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー FromBooskaFromBooska
提出日時 2023-09-25 11:18:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 709 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-07-18 09:07:52
合計ジャッジ時間 18,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
76,420 KB
testcase_01 AC 205 ms
76,160 KB
testcase_02 AC 79 ms
75,776 KB
testcase_03 AC 234 ms
76,160 KB
testcase_04 AC 271 ms
76,724 KB
testcase_05 AC 83 ms
76,032 KB
testcase_06 AC 356 ms
76,496 KB
testcase_07 AC 339 ms
76,672 KB
testcase_08 AC 709 ms
76,800 KB
testcase_09 AC 454 ms
76,416 KB
testcase_10 AC 552 ms
76,416 KB
testcase_11 AC 631 ms
76,416 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 37 ms
51,840 KB
testcase_14 AC 38 ms
51,840 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 37 ms
52,352 KB
testcase_17 AC 397 ms
76,776 KB
testcase_18 AC 195 ms
76,536 KB
testcase_19 AC 387 ms
76,416 KB
testcase_20 AC 303 ms
76,416 KB
testcase_21 AC 98 ms
76,032 KB
testcase_22 AC 68 ms
75,648 KB
testcase_23 AC 59 ms
65,664 KB
testcase_24 AC 62 ms
75,264 KB
testcase_25 AC 64 ms
75,136 KB
testcase_26 AC 52 ms
61,952 KB
testcase_27 AC 44 ms
58,240 KB
testcase_28 AC 60 ms
72,192 KB
testcase_29 AC 69 ms
75,392 KB
testcase_30 AC 59 ms
71,808 KB
testcase_31 AC 58 ms
70,656 KB
testcase_32 AC 66 ms
75,136 KB
testcase_33 AC 337 ms
76,800 KB
testcase_34 AC 571 ms
76,416 KB
testcase_35 AC 519 ms
76,672 KB
testcase_36 AC 176 ms
76,288 KB
testcase_37 AC 369 ms
76,416 KB
testcase_38 AC 354 ms
76,288 KB
testcase_39 AC 567 ms
76,800 KB
testcase_40 AC 636 ms
76,776 KB
testcase_41 AC 612 ms
76,928 KB
testcase_42 AC 514 ms
76,416 KB
testcase_43 AC 688 ms
76,744 KB
testcase_44 AC 270 ms
76,288 KB
testcase_45 AC 667 ms
76,416 KB
testcase_46 AC 127 ms
76,416 KB
testcase_47 AC 284 ms
76,672 KB
testcase_48 AC 241 ms
76,288 KB
testcase_49 AC 259 ms
76,672 KB
testcase_50 AC 318 ms
76,544 KB
testcase_51 AC 382 ms
76,636 KB
testcase_52 AC 380 ms
76,672 KB
testcase_53 AC 574 ms
76,416 KB
testcase_54 AC 181 ms
76,160 KB
testcase_55 AC 82 ms
76,168 KB
testcase_56 AC 463 ms
76,636 KB
testcase_57 AC 343 ms
76,576 KB
testcase_58 AC 40 ms
51,968 KB
testcase_59 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 累積和をHP分、敵カウント分
# k以下の探索はbisect
# これで間に合うか?

N = int(input())
S = input()
A = list(map(int, input().split()))

HP_cumu = [0]
hp_temp = 0
enemy_cumu = [0]
enemy_temp = 0
for i in range(N):
    hp_temp += A[i]
    HP_cumu.append(hp_temp)
    if S[i] == 'E':
        enemy_temp += 1
    enemy_cumu.append(enemy_temp)
    
Q = int(input())
K = list(map(int, input().split()))
from bisect import *
for q in range(Q):
    k = K[q]
    ans = 0
    for i in range(N):
        start = HP_cumu[i]
        target = start+k
        idx = bisect_left(HP_cumu, target+1)-1
        calc = enemy_cumu[idx]-enemy_cumu[i]
        ans = max(ans, calc)
    print(ans)

0