結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー 👑 rin204rin204
提出日時 2022-01-18 23:51:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-05-02 19:37:58
合計ジャッジ時間 6,546 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
67,456 KB
testcase_01 AC 77 ms
69,120 KB
testcase_02 AC 58 ms
61,568 KB
testcase_03 AC 72 ms
65,152 KB
testcase_04 AC 77 ms
65,664 KB
testcase_05 AC 59 ms
61,312 KB
testcase_06 AC 82 ms
69,504 KB
testcase_07 AC 87 ms
69,632 KB
testcase_08 AC 102 ms
70,912 KB
testcase_09 AC 96 ms
69,760 KB
testcase_10 AC 98 ms
70,144 KB
testcase_11 AC 90 ms
69,760 KB
testcase_12 AC 42 ms
51,840 KB
testcase_13 AC 42 ms
51,840 KB
testcase_14 AC 42 ms
51,712 KB
testcase_15 AC 42 ms
52,096 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 88 ms
68,608 KB
testcase_18 AC 76 ms
64,768 KB
testcase_19 AC 84 ms
69,632 KB
testcase_20 AC 97 ms
66,816 KB
testcase_21 AC 64 ms
65,024 KB
testcase_22 AC 57 ms
61,440 KB
testcase_23 AC 44 ms
52,096 KB
testcase_24 AC 54 ms
60,288 KB
testcase_25 AC 51 ms
60,288 KB
testcase_26 AC 52 ms
59,904 KB
testcase_27 AC 48 ms
58,496 KB
testcase_28 AC 52 ms
59,392 KB
testcase_29 AC 55 ms
61,056 KB
testcase_30 AC 52 ms
59,520 KB
testcase_31 AC 51 ms
59,520 KB
testcase_32 AC 54 ms
59,904 KB
testcase_33 AC 90 ms
66,304 KB
testcase_34 AC 93 ms
70,912 KB
testcase_35 AC 93 ms
70,400 KB
testcase_36 AC 70 ms
64,768 KB
testcase_37 AC 87 ms
66,944 KB
testcase_38 AC 83 ms
70,272 KB
testcase_39 AC 101 ms
71,040 KB
testcase_40 AC 94 ms
70,528 KB
testcase_41 AC 104 ms
71,296 KB
testcase_42 AC 96 ms
70,784 KB
testcase_43 AC 104 ms
70,912 KB
testcase_44 AC 79 ms
69,504 KB
testcase_45 AC 116 ms
71,040 KB
testcase_46 AC 68 ms
65,920 KB
testcase_47 AC 80 ms
69,248 KB
testcase_48 AC 80 ms
66,048 KB
testcase_49 AC 83 ms
69,120 KB
testcase_50 AC 83 ms
66,816 KB
testcase_51 AC 87 ms
69,504 KB
testcase_52 AC 87 ms
69,632 KB
testcase_53 AC 101 ms
70,656 KB
testcase_54 AC 74 ms
64,640 KB
testcase_55 AC 58 ms
61,952 KB
testcase_56 AC 97 ms
70,656 KB
testcase_57 AC 93 ms
69,376 KB
testcase_58 AC 42 ms
51,712 KB
testcase_59 AC 43 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right

n = int(input())
S = input()
A = list(map(int, input().split()))
inf = 1 << 60
min_ = [inf] * n
for i in range(n):
    tot = 0
    e = 0
    for j in range(i, n):
        tot += A[j]
        if S[j] == "E":
            min_[e] = min(min_[e], tot)
            e += 1
            
q = int(input())
K = list(map(int, input().split()))
for k in K:
    print(bisect_right(min_, k))
0