結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー ptotqptotq
提出日時 2019-11-29 22:36:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 868 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 93,788 KB
最終ジャッジ日時 2024-09-14 05:51:28
合計ジャッジ時間 11,421 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,288 KB
testcase_01 AC 112 ms
76,416 KB
testcase_02 AC 66 ms
76,432 KB
testcase_03 AC 115 ms
76,928 KB
testcase_04 AC 149 ms
78,156 KB
testcase_05 AC 71 ms
77,080 KB
testcase_06 AC 166 ms
77,696 KB
testcase_07 AC 164 ms
78,388 KB
testcase_08 AC 334 ms
80,656 KB
testcase_09 AC 218 ms
78,848 KB
testcase_10 AC 255 ms
79,320 KB
testcase_11 AC 693 ms
91,100 KB
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 868 ms
93,788 KB
testcase_18 AC 136 ms
78,464 KB
testcase_19 AC 198 ms
77,648 KB
testcase_20 AC 181 ms
79,344 KB
testcase_21 AC 79 ms
76,032 KB
testcase_22 AC 66 ms
76,800 KB
testcase_23 AC 49 ms
61,824 KB
testcase_24 AC 55 ms
68,736 KB
testcase_25 AC 55 ms
68,352 KB
testcase_26 AC 48 ms
61,440 KB
testcase_27 AC 43 ms
58,624 KB
testcase_28 AC 54 ms
66,984 KB
testcase_29 AC 63 ms
73,472 KB
testcase_30 AC 56 ms
67,712 KB
testcase_31 AC 52 ms
65,024 KB
testcase_32 AC 54 ms
70,272 KB
testcase_33 AC 198 ms
80,000 KB
testcase_34 AC 273 ms
79,600 KB
testcase_35 AC 239 ms
78,976 KB
testcase_36 AC 104 ms
77,228 KB
testcase_37 AC 200 ms
79,312 KB
testcase_38 AC 166 ms
77,696 KB
testcase_39 AC 273 ms
79,232 KB
testcase_40 AC 279 ms
79,232 KB
testcase_41 AC 293 ms
79,360 KB
testcase_42 AC 258 ms
80,000 KB
testcase_43 AC 310 ms
79,488 KB
testcase_44 AC 136 ms
76,872 KB
testcase_45 AC 331 ms
81,116 KB
testcase_46 AC 90 ms
76,032 KB
testcase_47 AC 142 ms
77,084 KB
testcase_48 AC 140 ms
78,332 KB
testcase_49 AC 136 ms
77,472 KB
testcase_50 AC 177 ms
78,720 KB
testcase_51 AC 182 ms
78,848 KB
testcase_52 AC 186 ms
78,404 KB
testcase_53 AC 295 ms
80,748 KB
testcase_54 AC 111 ms
78,152 KB
testcase_55 AC 74 ms
75,776 KB
testcase_56 AC 227 ms
79,360 KB
testcase_57 AC 162 ms
78,464 KB
testcase_58 AC 39 ms
52,480 KB
testcase_59 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
N = int(input())
S = input()
hp = list(map(int, input().split()))
enemy_count = S.count('E')
enemy_pos = [-1]

for i in range(N):
    if S[i] == 'E':
        enemy_pos.append(i)

accs = [[] for _ in range(enemy_count+1)]

for i in range(1, enemy_count+1):
    power = 0
    for j in range(enemy_pos[i], N):
        power += hp[j]
        if S[j] == 'E':
            accs[i].append(power)


Q = int(input())
ans_a = []
for power in map(int, input().split()):
    ans = 0
    for i in range(1, enemy_count+1):
        ans = max(ans, bisect_right(accs[i], power))
    ans_a.append(ans)

print(*ans_a, sep='\n')
0