結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー stngstng
提出日時 2022-08-15 16:25:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 75,004 KB
最終ジャッジ日時 2024-10-02 05:24:58
合計ジャッジ時間 5,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
69,100 KB
testcase_01 AC 70 ms
70,760 KB
testcase_02 AC 52 ms
63,336 KB
testcase_03 AC 61 ms
66,548 KB
testcase_04 AC 72 ms
67,084 KB
testcase_05 AC 52 ms
63,552 KB
testcase_06 AC 74 ms
72,320 KB
testcase_07 AC 78 ms
73,660 KB
testcase_08 AC 97 ms
74,136 KB
testcase_09 AC 84 ms
73,064 KB
testcase_10 AC 87 ms
72,500 KB
testcase_11 AC 78 ms
71,620 KB
testcase_12 AC 37 ms
53,136 KB
testcase_13 AC 37 ms
52,480 KB
testcase_14 AC 36 ms
52,620 KB
testcase_15 AC 36 ms
53,304 KB
testcase_16 AC 35 ms
53,352 KB
testcase_17 AC 78 ms
69,988 KB
testcase_18 AC 68 ms
66,504 KB
testcase_19 AC 72 ms
70,876 KB
testcase_20 AC 85 ms
68,804 KB
testcase_21 AC 56 ms
66,324 KB
testcase_22 AC 52 ms
63,088 KB
testcase_23 AC 38 ms
53,532 KB
testcase_24 AC 45 ms
61,972 KB
testcase_25 AC 46 ms
62,692 KB
testcase_26 AC 45 ms
61,108 KB
testcase_27 AC 42 ms
59,172 KB
testcase_28 AC 44 ms
60,868 KB
testcase_29 AC 48 ms
63,052 KB
testcase_30 AC 45 ms
61,572 KB
testcase_31 AC 44 ms
60,688 KB
testcase_32 AC 46 ms
62,052 KB
testcase_33 AC 78 ms
68,684 KB
testcase_34 AC 85 ms
73,096 KB
testcase_35 AC 83 ms
73,332 KB
testcase_36 AC 64 ms
66,848 KB
testcase_37 AC 78 ms
69,380 KB
testcase_38 AC 73 ms
71,960 KB
testcase_39 AC 90 ms
74,264 KB
testcase_40 AC 86 ms
73,444 KB
testcase_41 AC 93 ms
73,824 KB
testcase_42 AC 89 ms
75,004 KB
testcase_43 AC 92 ms
74,644 KB
testcase_44 AC 68 ms
71,096 KB
testcase_45 AC 103 ms
74,292 KB
testcase_46 AC 58 ms
66,580 KB
testcase_47 AC 71 ms
72,336 KB
testcase_48 AC 73 ms
67,616 KB
testcase_49 AC 73 ms
72,048 KB
testcase_50 AC 74 ms
68,600 KB
testcase_51 AC 77 ms
72,892 KB
testcase_52 AC 76 ms
73,216 KB
testcase_53 AC 93 ms
73,532 KB
testcase_54 AC 67 ms
66,900 KB
testcase_55 AC 49 ms
64,820 KB
testcase_56 AC 87 ms
73,232 KB
testcase_57 AC 79 ms
72,672 KB
testcase_58 AC 37 ms
53,032 KB
testcase_59 AC 36 ms
53,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n = int(input())
s = input()
a = [int(i) for i in input().split()]
q = int(input())
k = [int(i) for i in input().split()]

dp = [10**15]*(n)

for i in range(n):
    cnt = -1
    val = 0
    for j in range(i,n):
        if s[j] == "E":
            cnt += 1
        val += a[j]
        if cnt == -1:
            continue
        dp[cnt] = min(dp[cnt],val)
        #print(cnt,"cnt")

#print(dp)
#exit()
for i in range(q):
    qry = k[i]
    tmp = bisect.bisect_right(dp,qry)
    print(tmp)
0