結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー neterukunneterukun
提出日時 2019-11-29 22:53:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,020 ms / 2,000 ms
コード長 1,028 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-09-14 05:52:23
合計ジャッジ時間 11,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
65,920 KB
testcase_01 AC 153 ms
71,424 KB
testcase_02 AC 64 ms
66,816 KB
testcase_03 AC 118 ms
67,840 KB
testcase_04 AC 132 ms
71,808 KB
testcase_05 AC 64 ms
65,920 KB
testcase_06 AC 175 ms
70,912 KB
testcase_07 AC 173 ms
72,576 KB
testcase_08 AC 342 ms
73,472 KB
testcase_09 AC 216 ms
72,704 KB
testcase_10 AC 246 ms
72,448 KB
testcase_11 AC 306 ms
72,192 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 38 ms
52,608 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 1,020 ms
76,672 KB
testcase_18 AC 128 ms
72,448 KB
testcase_19 AC 221 ms
72,960 KB
testcase_20 AC 184 ms
73,068 KB
testcase_21 AC 82 ms
67,328 KB
testcase_22 AC 62 ms
66,048 KB
testcase_23 AC 49 ms
61,312 KB
testcase_24 AC 56 ms
63,488 KB
testcase_25 AC 56 ms
64,000 KB
testcase_26 AC 52 ms
63,488 KB
testcase_27 AC 44 ms
58,496 KB
testcase_28 AC 50 ms
61,696 KB
testcase_29 AC 54 ms
62,848 KB
testcase_30 AC 49 ms
60,544 KB
testcase_31 AC 48 ms
60,740 KB
testcase_32 AC 58 ms
63,872 KB
testcase_33 AC 181 ms
72,960 KB
testcase_34 AC 269 ms
74,112 KB
testcase_35 AC 247 ms
72,192 KB
testcase_36 AC 108 ms
71,040 KB
testcase_37 AC 181 ms
71,936 KB
testcase_38 AC 186 ms
68,608 KB
testcase_39 AC 274 ms
73,344 KB
testcase_40 AC 304 ms
73,072 KB
testcase_41 AC 291 ms
73,200 KB
testcase_42 AC 238 ms
72,448 KB
testcase_43 AC 301 ms
73,216 KB
testcase_44 AC 143 ms
71,632 KB
testcase_45 AC 310 ms
73,472 KB
testcase_46 AC 85 ms
67,712 KB
testcase_47 AC 156 ms
69,316 KB
testcase_48 AC 147 ms
72,320 KB
testcase_49 AC 144 ms
70,144 KB
testcase_50 AC 173 ms
71,808 KB
testcase_51 AC 195 ms
71,168 KB
testcase_52 AC 203 ms
72,064 KB
testcase_53 AC 291 ms
72,728 KB
testcase_54 AC 112 ms
71,424 KB
testcase_55 AC 69 ms
66,688 KB
testcase_56 AC 243 ms
72,192 KB
testcase_57 AC 181 ms
73,472 KB
testcase_58 AC 40 ms
52,224 KB
testcase_59 AC 40 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
a = list(map(int, input().split()))
q = int(input())
query = list(map(int, input().split()))

ruiseki = [0] * (n+1)
for i in range(n):
    ruiseki[i+1] = ruiseki[i] + (1 if s[i] == "E" else 0)

# ダブリング
log_size = n.bit_length()
double = [[0] * n for i in range(log_size)]
INF = 10**18
for i in range(n):
    double[0][i] = a[i]
for k in range(1, log_size):
    for i in range(n):
        if i+2**(k-1) < n:
            double[k][i] = double[k-1][i+2**(k-1)] + double[k-1][i]
        else:
            double[k][i] = INF

for qi in range(q):
    ans = 0
    for ni in range(n):
        ans_tmp = 0
        ans_num = 0
        k = log_size - 1
        i = ni
        while True:
            if k < 0 or i == n:
                break
            if ans_num + double[k][i] <= query[qi]:
                ans_num += double[k][i]
                i += 2**k
                ans_tmp += 2**k
            k -= 1
        ans_tmp = ruiseki[i] - ruiseki[ni]
        ans = max(ans, ans_tmp)
    print(ans)
0