結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー tentententen
提出日時 2020-08-26 19:00:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 1,390 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 77,756 KB
実行使用メモリ 46,240 KB
最終ジャッジ日時 2024-11-07 13:23:14
合計ジャッジ時間 16,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
42,672 KB
testcase_01 AC 212 ms
43,452 KB
testcase_02 AC 209 ms
41,920 KB
testcase_03 AC 220 ms
43,088 KB
testcase_04 AC 225 ms
43,716 KB
testcase_05 AC 211 ms
42,420 KB
testcase_06 AC 226 ms
44,252 KB
testcase_07 AC 227 ms
43,908 KB
testcase_08 AC 254 ms
45,212 KB
testcase_09 AC 241 ms
44,216 KB
testcase_10 AC 248 ms
44,792 KB
testcase_11 AC 263 ms
45,296 KB
testcase_12 AC 128 ms
41,176 KB
testcase_13 AC 127 ms
41,120 KB
testcase_14 AC 121 ms
40,744 KB
testcase_15 AC 118 ms
39,632 KB
testcase_16 AC 130 ms
40,996 KB
testcase_17 AC 267 ms
46,240 KB
testcase_18 AC 231 ms
43,340 KB
testcase_19 AC 237 ms
44,072 KB
testcase_20 AC 242 ms
44,332 KB
testcase_21 AC 200 ms
42,168 KB
testcase_22 AC 212 ms
42,372 KB
testcase_23 AC 149 ms
41,316 KB
testcase_24 AC 153 ms
41,484 KB
testcase_25 AC 152 ms
41,176 KB
testcase_26 AC 147 ms
41,420 KB
testcase_27 AC 135 ms
41,184 KB
testcase_28 AC 145 ms
41,540 KB
testcase_29 AC 162 ms
41,692 KB
testcase_30 AC 151 ms
41,276 KB
testcase_31 AC 144 ms
41,276 KB
testcase_32 AC 160 ms
41,536 KB
testcase_33 AC 251 ms
44,300 KB
testcase_34 AC 241 ms
44,328 KB
testcase_35 AC 240 ms
44,500 KB
testcase_36 AC 212 ms
43,184 KB
testcase_37 AC 249 ms
44,280 KB
testcase_38 AC 221 ms
44,112 KB
testcase_39 AC 242 ms
44,532 KB
testcase_40 AC 256 ms
44,912 KB
testcase_41 AC 253 ms
45,228 KB
testcase_42 AC 253 ms
44,284 KB
testcase_43 AC 254 ms
45,044 KB
testcase_44 AC 220 ms
43,452 KB
testcase_45 AC 271 ms
45,260 KB
testcase_46 AC 202 ms
42,664 KB
testcase_47 AC 234 ms
44,268 KB
testcase_48 AC 237 ms
44,068 KB
testcase_49 AC 223 ms
43,556 KB
testcase_50 AC 234 ms
44,308 KB
testcase_51 AC 231 ms
44,440 KB
testcase_52 AC 225 ms
44,064 KB
testcase_53 AC 238 ms
44,860 KB
testcase_54 AC 223 ms
43,552 KB
testcase_55 AC 187 ms
41,900 KB
testcase_56 AC 246 ms
43,992 KB
testcase_57 AC 231 ms
43,856 KB
testcase_58 AC 128 ms
41,148 KB
testcase_59 AC 131 ms
41,280 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();
        long[] sums = new long[n + 1];
        int[] counts = new int[n + 1];
        int count = 0;
        for (int i = 1; i <= n; i++) {
            sums[i] = sums[i - 1] + sc.nextInt();
            if (arr[i - 1] == 'E') {
                count++;
            }
            counts[i] = count;
        }
        long[] mins = new long[count + 1];
        Arrays.fill(mins, Long.MAX_VALUE);
        mins[0] = 0;
        for (int i = 0; i < n; i++) {
            for (int j = i + 1; j <= n; j++) {
                int enemy = counts[j] - counts[i];
                mins[enemy] = Math.min(mins[enemy], sums[j] - sums[i]);
            }
        }
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int x = sc.nextInt();
            int left = 0;
            int right = count + 1;
            while (right - left > 1) {
                int m = (left + right) / 2;
                if (mins[m] <= x) {
                    left = m;
                } else {
                    right = m;
                }
            }
            sb.append(left).append("\n");
        }
        System.out.print(sb);
    }
}
0