結果
問題 | No.935 う し た ぷ に き あ く ん 笑 ビ - ム |
ユーザー | tenten |
提出日時 | 2020-08-26 18:58:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,389 bytes |
コンパイル時間 | 2,417 ms |
コンパイル使用メモリ | 77,264 KB |
実行使用メモリ | 46,420 KB |
最終ジャッジ日時 | 2024-11-07 13:22:53 |
合計ジャッジ時間 | 16,498 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 128 ms
41,216 KB |
testcase_13 | AC | 126 ms
41,008 KB |
testcase_14 | AC | 118 ms
40,020 KB |
testcase_15 | AC | 131 ms
41,368 KB |
testcase_16 | AC | 116 ms
39,872 KB |
testcase_17 | AC | 264 ms
46,420 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 144 ms
41,424 KB |
testcase_24 | AC | 153 ms
41,484 KB |
testcase_25 | AC | 153 ms
41,260 KB |
testcase_26 | AC | 141 ms
41,152 KB |
testcase_27 | AC | 134 ms
41,412 KB |
testcase_28 | AC | 143 ms
41,296 KB |
testcase_29 | AC | 159 ms
41,324 KB |
testcase_30 | AC | 143 ms
41,436 KB |
testcase_31 | AC | 142 ms
41,540 KB |
testcase_32 | AC | 152 ms
41,588 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
41,268 KB |
testcase_59 | AC | 125 ms
40,920 KB |
ソースコード
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[] sums = new int[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; } int[] mins = new int[count + 1]; Arrays.fill(mins, Integer.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); } }