結果

問題 No.2240 WAC
ユーザー kusagame12kusagame12
提出日時 2023-11-05 18:17:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 1,919 bytes
コンパイル時間 2,558 ms
コンパイル使用メモリ 77,264 KB
実行使用メモリ 46,636 KB
最終ジャッジ日時 2024-09-25 22:38:21
合計ジャッジ時間 12,103 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,168 KB
testcase_01 AC 127 ms
41,228 KB
testcase_02 AC 128 ms
41,200 KB
testcase_03 AC 131 ms
41,024 KB
testcase_04 AC 128 ms
40,964 KB
testcase_05 AC 127 ms
41,260 KB
testcase_06 AC 129 ms
41,264 KB
testcase_07 AC 127 ms
41,148 KB
testcase_08 AC 127 ms
41,276 KB
testcase_09 AC 128 ms
41,132 KB
testcase_10 AC 254 ms
46,484 KB
testcase_11 AC 253 ms
46,604 KB
testcase_12 AC 251 ms
46,220 KB
testcase_13 AC 213 ms
42,804 KB
testcase_14 AC 194 ms
41,728 KB
testcase_15 AC 227 ms
44,448 KB
testcase_16 AC 238 ms
44,456 KB
testcase_17 AC 233 ms
43,156 KB
testcase_18 AC 197 ms
42,188 KB
testcase_19 AC 206 ms
42,284 KB
testcase_20 AC 259 ms
44,544 KB
testcase_21 AC 208 ms
43,100 KB
testcase_22 AC 212 ms
43,212 KB
testcase_23 AC 213 ms
42,884 KB
testcase_24 AC 235 ms
43,144 KB
testcase_25 AC 234 ms
43,352 KB
testcase_26 AC 204 ms
42,292 KB
testcase_27 AC 199 ms
42,456 KB
testcase_28 AC 207 ms
42,412 KB
testcase_29 AC 162 ms
41,808 KB
testcase_30 AC 212 ms
43,164 KB
testcase_31 AC 253 ms
46,636 KB
testcase_32 AC 197 ms
42,376 KB
testcase_33 AC 220 ms
43,176 KB
testcase_34 AC 228 ms
43,076 KB
testcase_35 AC 155 ms
41,496 KB
testcase_36 AC 241 ms
44,220 KB
testcase_37 AC 258 ms
46,148 KB
testcase_38 AC 202 ms
42,372 KB
testcase_39 AC 255 ms
45,868 KB
testcase_40 AC 212 ms
43,212 KB
testcase_41 AC 233 ms
43,068 KB
testcase_42 AC 228 ms
43,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        int m = sc.nextInt();
        char[] s = sc.next().toCharArray();
        
        int waCount = 0;
        int wCount = 0;
        boolean flag = false;
        for (int i = 0; i < s.length ; i++) {
            
            if(!flag && s[i] == 'W'){
                flag = true;
                continue;
            }
            if(flag && s[i] == 'W'){
                wCount++;
                continue;
            }
            if(flag && s[i] == 'A'){
                waCount++;
                flag = false;
                continue;
            }
             if(!flag && s[i] == 'A'){
                if(wCount > 0){
                    waCount++;
                }
                if(wCount > 0){
                    wCount--;
                }
                continue;
            }
            
        }
        
        int acCount = 0;
        int aCount = 0;
        flag = false;
        for (int i = 0; i < s.length ; i++) {
            
           if(!flag && s[i] == 'A'){
                flag = true;
                continue;
            }
            if(flag && s[i] == 'A'){
                aCount++;
                continue;
            }
            if(flag && s[i] == 'C'){
                acCount++;
                flag = false;
                continue;
            }
             if(!flag && s[i] == 'C'){
                if(aCount > 0){
                    acCount++;
                }
                if(aCount > 0){
                    aCount--;
                }
                continue;
             }
            
        }
        
        System.out.println((waCount + acCount == n + m && waCount == n && acCount == m) ? "Yes" : "No");
        
    }
}
0