結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー FromBooskaFromBooska
提出日時 2023-03-18 20:46:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,146 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-09-18 13:34:29
合計ジャッジ時間 16,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,288 KB
testcase_01 AC 176 ms
76,268 KB
testcase_02 AC 69 ms
75,816 KB
testcase_03 AC 205 ms
76,544 KB
testcase_04 AC 244 ms
76,648 KB
testcase_05 AC 70 ms
75,904 KB
testcase_06 AC 327 ms
76,544 KB
testcase_07 AC 310 ms
77,008 KB
testcase_08 AC 649 ms
76,464 KB
testcase_09 AC 407 ms
76,908 KB
testcase_10 AC 493 ms
76,636 KB
testcase_11 AC 592 ms
77,312 KB
testcase_12 AC 35 ms
52,352 KB
testcase_13 WA -
testcase_14 AC 36 ms
51,840 KB
testcase_15 AC 34 ms
51,968 KB
testcase_16 AC 36 ms
52,096 KB
testcase_17 AC 353 ms
76,928 KB
testcase_18 AC 183 ms
76,948 KB
testcase_19 AC 363 ms
76,416 KB
testcase_20 AC 282 ms
76,416 KB
testcase_21 AC 85 ms
76,032 KB
testcase_22 AC 61 ms
75,352 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 56 ms
75,416 KB
testcase_26 AC 45 ms
62,208 KB
testcase_27 AC 39 ms
58,496 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 305 ms
76,460 KB
testcase_34 AC 500 ms
77,032 KB
testcase_35 AC 448 ms
76,840 KB
testcase_36 AC 154 ms
76,416 KB
testcase_37 AC 295 ms
76,816 KB
testcase_38 AC 301 ms
76,416 KB
testcase_39 AC 513 ms
76,444 KB
testcase_40 AC 568 ms
76,704 KB
testcase_41 AC 561 ms
76,920 KB
testcase_42 AC 426 ms
76,576 KB
testcase_43 AC 583 ms
77,220 KB
testcase_44 AC 233 ms
76,544 KB
testcase_45 AC 569 ms
76,704 KB
testcase_46 AC 109 ms
76,544 KB
testcase_47 AC 277 ms
76,896 KB
testcase_48 AC 216 ms
76,248 KB
testcase_49 AC 237 ms
76,392 KB
testcase_50 AC 284 ms
76,268 KB
testcase_51 AC 331 ms
76,516 KB
testcase_52 AC 340 ms
76,788 KB
testcase_53 AC 507 ms
76,824 KB
testcase_54 AC 159 ms
76,904 KB
testcase_55 AC 73 ms
75,684 KB
testcase_56 AC 403 ms
76,792 KB
testcase_57 AC 288 ms
76,492 KB
testcase_58 AC 36 ms
52,864 KB
testcase_59 AC 34 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 累積和、enemy count 
# 任意の場所から打てるときの最大値
# つまりある区間の和がk以下のときのEの数

N = int(input())
S = input()
enemy_count = [0]*(N+1)
for i in range(N):
    if i == 0:
        if S[i] == 'E':
            enemy_count[i+1] = 1
        else:
            enemy_count[i+1] = 0
    else:
        if S[i] == 'E':
            enemy_count[i+1] = enemy_count[i]+1
        else:
            enemy_count[i+1] = enemy_count[i]       
HP = list(map(int, input().split()))
HP_cumu = [0]
temp = 0
for i in range(N):
    temp += HP[i]
    HP_cumu.append(temp)
    
from bisect import *
Q = int(input())
K = list(map(int, input().split()))
for k in K:
    if k == 0:
        print(0)
        continue
    
    ans = 0
    for i in range(N):
        base = HP_cumu[i]
        idx = bisect_left(HP_cumu, base+k)
        #print('k', k, 'idx', idx)
        if idx > N:
            ans = max(ans, enemy_count[N]-enemy_count[i])
        elif HP_cumu[idx] == k:
            ans = max(ans, enemy_count[idx]-enemy_count[i])
        else:
            ans = max(ans, enemy_count[idx-1]-enemy_count[i])
    print(ans)

0