結果

問題 No.2240 WAC
ユーザー tentententen
提出日時 2023-08-09 10:20:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,338 bytes
コンパイル時間 2,720 ms
コンパイル使用メモリ 85,496 KB
実行使用メモリ 78,716 KB
最終ジャッジ日時 2024-11-14 17:29:42
合計ジャッジ時間 14,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,240 KB
testcase_01 AC 55 ms
50,408 KB
testcase_02 AC 56 ms
50,584 KB
testcase_03 AC 56 ms
50,272 KB
testcase_04 AC 55 ms
50,648 KB
testcase_05 AC 56 ms
50,452 KB
testcase_06 AC 57 ms
50,324 KB
testcase_07 AC 57 ms
50,384 KB
testcase_08 AC 58 ms
50,412 KB
testcase_09 AC 56 ms
50,388 KB
testcase_10 AC 388 ms
77,816 KB
testcase_11 AC 399 ms
78,104 KB
testcase_12 WA -
testcase_13 AC 232 ms
62,756 KB
testcase_14 AC 143 ms
54,544 KB
testcase_15 AC 321 ms
66,808 KB
testcase_16 AC 401 ms
76,604 KB
testcase_17 WA -
testcase_18 AC 169 ms
58,820 KB
testcase_19 AC 182 ms
57,952 KB
testcase_20 AC 331 ms
69,656 KB
testcase_21 AC 221 ms
62,288 KB
testcase_22 WA -
testcase_23 AC 222 ms
62,336 KB
testcase_24 WA -
testcase_25 AC 310 ms
66,852 KB
testcase_26 WA -
testcase_27 AC 175 ms
58,084 KB
testcase_28 WA -
testcase_29 AC 127 ms
54,540 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 168 ms
59,036 KB
testcase_33 AC 296 ms
66,180 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 332 ms
67,024 KB
testcase_37 AC 363 ms
77,496 KB
testcase_38 AC 211 ms
62,584 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        char[] inputs = sc.next().toCharArray();
        TreeSet<Integer> w = new TreeSet<>();
        TreeSet<Integer> wa = new TreeSet<>();
        TreeSet<Integer> ac = new TreeSet<>();
        TreeSet<Integer> c = new TreeSet<>();
        int count = 0;
        for (int i = 0; i < inputs.length; i++) {
            if (inputs[i] == 'A') {
                if (count < m) {
                    ac.add(i);
                } else {
                    wa.add(i);
                }
                count++;
            } else if (inputs[i] == 'W') {
                w.add(i);
            } else {
                c.add(i);
            }
        }
        if (wa.first() < w.first() || wa.last() < w.last() || ac.first() > c.first() || ac.last() > c.last()) {
            System.out.println("No");
        } else {
            System.out.println("Yes");
        }
    }
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0