結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー htensaihtensai
提出日時 2020-02-06 10:37:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 77,968 KB
実行使用メモリ 58,924 KB
最終ジャッジ日時 2024-09-25 04:58:09
合計ジャッジ時間 16,017 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
56,636 KB
testcase_01 AC 210 ms
56,780 KB
testcase_02 AC 195 ms
54,764 KB
testcase_03 AC 211 ms
56,840 KB
testcase_04 AC 225 ms
56,780 KB
testcase_05 AC 209 ms
54,584 KB
testcase_06 AC 228 ms
57,088 KB
testcase_07 AC 215 ms
56,888 KB
testcase_08 AC 252 ms
57,804 KB
testcase_09 AC 241 ms
57,240 KB
testcase_10 AC 238 ms
56,824 KB
testcase_11 AC 257 ms
57,896 KB
testcase_12 AC 114 ms
54,096 KB
testcase_13 AC 131 ms
54,208 KB
testcase_14 AC 114 ms
52,988 KB
testcase_15 AC 126 ms
54,088 KB
testcase_16 AC 127 ms
54,168 KB
testcase_17 AC 303 ms
58,924 KB
testcase_18 AC 226 ms
56,888 KB
testcase_19 AC 218 ms
57,100 KB
testcase_20 AC 223 ms
56,856 KB
testcase_21 AC 185 ms
54,400 KB
testcase_22 AC 206 ms
54,876 KB
testcase_23 AC 141 ms
54,036 KB
testcase_24 AC 151 ms
54,284 KB
testcase_25 AC 164 ms
54,128 KB
testcase_26 AC 138 ms
54,052 KB
testcase_27 AC 134 ms
54,216 KB
testcase_28 AC 143 ms
54,376 KB
testcase_29 AC 153 ms
53,952 KB
testcase_30 AC 144 ms
54,276 KB
testcase_31 AC 144 ms
54,448 KB
testcase_32 AC 155 ms
54,396 KB
testcase_33 AC 240 ms
56,576 KB
testcase_34 AC 230 ms
56,796 KB
testcase_35 AC 235 ms
57,096 KB
testcase_36 AC 205 ms
56,576 KB
testcase_37 AC 234 ms
57,012 KB
testcase_38 AC 217 ms
56,572 KB
testcase_39 AC 242 ms
56,864 KB
testcase_40 AC 245 ms
56,512 KB
testcase_41 AC 249 ms
56,680 KB
testcase_42 AC 242 ms
57,308 KB
testcase_43 AC 253 ms
56,960 KB
testcase_44 AC 215 ms
56,700 KB
testcase_45 AC 238 ms
57,208 KB
testcase_46 AC 198 ms
54,548 KB
testcase_47 AC 212 ms
56,928 KB
testcase_48 AC 225 ms
56,912 KB
testcase_49 AC 217 ms
56,884 KB
testcase_50 AC 224 ms
56,764 KB
testcase_51 AC 226 ms
56,684 KB
testcase_52 AC 229 ms
56,892 KB
testcase_53 AC 241 ms
57,472 KB
testcase_54 AC 222 ms
57,060 KB
testcase_55 AC 185 ms
54,440 KB
testcase_56 AC 236 ms
56,964 KB
testcase_57 AC 227 ms
56,700 KB
testcase_58 AC 122 ms
54,064 KB
testcase_59 AC 123 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        char[] arr = sc.next().toCharArray();
        int[] eSums = new int[n + 1];
        long[] sSums = new long[n + 1];
        for (int i = 1; i <= n; i++) {
            eSums[i] = eSums[i - 1];
            if (arr[i - 1] == 'E') {
                eSums[i]++;
            }
            sSums[i] = sSums[i - 1];
            sSums[i] += sc.nextInt();
            
        }
        int max = eSums[n];
        long[] scores = new long[max + 1];
        Arrays.fill(scores, Long.MAX_VALUE);
        scores[0] = 0;
        for (int i = 0; i < n; i++) {
            for (int j = i + 1; j <= n; j++) {
                int count = eSums[j] - eSums[i];
                scores[count] = Math.min(scores[count], sSums[j] - sSums[i]);
            }
        }
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int x = sc.nextInt();
            int idx = 0;
            while (idx < max && scores[idx + 1] <= x) {
                idx++;
            }
            sb.append(idx).append("\n");
        }
        System.out.print(sb);
    }
}
0