結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
67,328 KB
testcase_01 AC 66 ms
68,864 KB
testcase_02 AC 51 ms
61,824 KB
testcase_03 AC 62 ms
65,536 KB
testcase_04 AC 69 ms
65,408 KB
testcase_05 AC 52 ms
61,568 KB
testcase_06 AC 72 ms
69,504 KB
testcase_07 AC 75 ms
69,376 KB
testcase_08 AC 88 ms
71,168 KB
testcase_09 AC 83 ms
69,760 KB
testcase_10 AC 93 ms
70,400 KB
testcase_11 AC 80 ms
69,760 KB
testcase_12 AC 37 ms
52,608 KB
testcase_13 AC 36 ms
51,840 KB
testcase_14 AC 37 ms
52,096 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 36 ms
51,968 KB
testcase_17 AC 76 ms
68,864 KB
testcase_18 AC 66 ms
65,280 KB
testcase_19 AC 71 ms
69,504 KB
testcase_20 AC 85 ms
66,836 KB
testcase_21 AC 55 ms
65,024 KB
testcase_22 AC 49 ms
61,184 KB
testcase_23 AC 38 ms
52,608 KB
testcase_24 AC 46 ms
60,160 KB
testcase_25 AC 44 ms
60,288 KB
testcase_26 AC 45 ms
59,648 KB
testcase_27 AC 41 ms
58,496 KB
testcase_28 AC 43 ms
59,008 KB
testcase_29 AC 46 ms
60,672 KB
testcase_30 AC 45 ms
59,776 KB
testcase_31 AC 43 ms
59,392 KB
testcase_32 AC 45 ms
60,288 KB
testcase_33 AC 78 ms
66,944 KB
testcase_34 AC 79 ms
70,912 KB
testcase_35 AC 81 ms
70,528 KB
testcase_36 AC 61 ms
64,768 KB
testcase_37 AC 76 ms
67,200 KB
testcase_38 AC 71 ms
69,888 KB
testcase_39 AC 90 ms
70,784 KB
testcase_40 AC 81 ms
71,168 KB
testcase_41 AC 91 ms
70,912 KB
testcase_42 AC 83 ms
70,784 KB
testcase_43 AC 90 ms
71,680 KB
testcase_44 AC 66 ms
69,888 KB
testcase_45 AC 101 ms
71,552 KB
testcase_46 AC 57 ms
65,792 KB
testcase_47 AC 67 ms
69,888 KB
testcase_48 AC 76 ms
66,664 KB
testcase_49 AC 71 ms
69,632 KB
testcase_50 AC 73 ms
67,072 KB
testcase_51 AC 74 ms
69,504 KB
testcase_52 AC 76 ms
69,760 KB
testcase_53 AC 89 ms
70,784 KB
testcase_54 AC 64 ms
64,896 KB
testcase_55 AC 48 ms
61,440 KB
testcase_56 AC 82 ms
70,784 KB
testcase_57 AC 77 ms
69,504 KB
testcase_58 AC 37 ms
52,096 KB
testcase_59 AC 37 ms
51,840 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