結果

問題 No.2240 WAC
ユーザー tentententen
提出日時 2023-03-14 08:49:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 2,225 bytes
コンパイル時間 3,235 ms
コンパイル使用メモリ 89,920 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-09-18 07:54:15
合計ジャッジ時間 8,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,608 KB
testcase_01 AC 52 ms
37,264 KB
testcase_02 AC 54 ms
37,460 KB
testcase_03 AC 53 ms
37,196 KB
testcase_04 AC 56 ms
37,008 KB
testcase_05 AC 54 ms
37,108 KB
testcase_06 AC 53 ms
37,164 KB
testcase_07 AC 52 ms
37,068 KB
testcase_08 AC 53 ms
37,032 KB
testcase_09 AC 52 ms
37,392 KB
testcase_10 AC 133 ms
41,032 KB
testcase_11 AC 132 ms
40,772 KB
testcase_12 AC 128 ms
40,780 KB
testcase_13 AC 100 ms
39,512 KB
testcase_14 AC 72 ms
37,948 KB
testcase_15 AC 110 ms
40,188 KB
testcase_16 AC 126 ms
40,700 KB
testcase_17 AC 116 ms
39,672 KB
testcase_18 AC 76 ms
38,284 KB
testcase_19 AC 87 ms
39,388 KB
testcase_20 AC 110 ms
40,360 KB
testcase_21 AC 111 ms
39,724 KB
testcase_22 AC 99 ms
39,952 KB
testcase_23 AC 97 ms
39,624 KB
testcase_24 AC 97 ms
40,208 KB
testcase_25 AC 121 ms
39,996 KB
testcase_26 AC 102 ms
39,224 KB
testcase_27 AC 86 ms
38,964 KB
testcase_28 AC 95 ms
38,948 KB
testcase_29 AC 74 ms
37,596 KB
testcase_30 AC 102 ms
39,600 KB
testcase_31 AC 134 ms
40,928 KB
testcase_32 AC 74 ms
38,152 KB
testcase_33 AC 111 ms
39,436 KB
testcase_34 AC 115 ms
40,084 KB
testcase_35 AC 64 ms
37,908 KB
testcase_36 AC 118 ms
40,704 KB
testcase_37 AC 114 ms
40,508 KB
testcase_38 AC 97 ms
39,176 KB
testcase_39 AC 122 ms
41,568 KB
testcase_40 AC 110 ms
39,788 KB
testcase_41 AC 97 ms
39,636 KB
testcase_42 AC 106 ms
40,076 KB
権限があれば一括ダウンロードができます

ソースコード

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();
        int wa = 0;
        int ac = 0;
        for (int i = 0; i < inputs.length; i++) {
            if (inputs[i] == 'W') {
                wa++;
            } else if (inputs[i] == 'C') {
                ac--;
                if (ac < 0) {
                    System.out.println("No");
                    return;
                }
            } else {
                if (m > 0) {
                    ac++;
                    m--;
                } else {
                    wa--;
                    if (wa < 0) {
                        System.out.println("No");
                        return;
                    }
                }
            }
        }
        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