結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 131 ms
54,060 KB
testcase_13 AC 122 ms
54,016 KB
testcase_14 AC 123 ms
53,940 KB
testcase_15 AC 125 ms
54,240 KB
testcase_16 AC 124 ms
54,080 KB
testcase_17 AC 291 ms
58,776 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 140 ms
53,992 KB
testcase_24 AC 161 ms
53,904 KB
testcase_25 AC 159 ms
54,044 KB
testcase_26 AC 138 ms
54,188 KB
testcase_27 AC 133 ms
54,216 KB
testcase_28 AC 140 ms
54,296 KB
testcase_29 AC 152 ms
54,464 KB
testcase_30 AC 144 ms
54,168 KB
testcase_31 AC 139 ms
54,112 KB
testcase_32 AC 148 ms
54,280 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 127 ms
53,984 KB
testcase_59 AC 125 ms
53,752 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];
        int[] sSums = new int[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];
        int[] scores = new int[max + 1];
        Arrays.fill(scores, Integer.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