結果

問題 No.2373 wa, wo, n
ユーザー tentententen
提出日時 2023-07-11 14:17:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,431 bytes
コンパイル時間 3,208 ms
コンパイル使用メモリ 83,348 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-09-13 04:41:46
合計ジャッジ時間 7,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,320 KB
testcase_01 AC 56 ms
50,400 KB
testcase_02 AC 55 ms
50,112 KB
testcase_03 AC 55 ms
50,300 KB
testcase_04 AC 55 ms
50,372 KB
testcase_05 AC 55 ms
50,448 KB
testcase_06 AC 55 ms
50,384 KB
testcase_07 AC 54 ms
50,564 KB
testcase_08 WA -
testcase_09 AC 55 ms
50,156 KB
testcase_10 AC 55 ms
50,408 KB
testcase_11 AC 55 ms
50,372 KB
testcase_12 AC 55 ms
50,168 KB
testcase_13 AC 55 ms
50,512 KB
testcase_14 AC 116 ms
52,044 KB
testcase_15 AC 68 ms
50,672 KB
testcase_16 AC 116 ms
52,144 KB
testcase_17 AC 71 ms
50,832 KB
testcase_18 AC 56 ms
50,252 KB
testcase_19 AC 74 ms
51,196 KB
testcase_20 AC 103 ms
51,900 KB
testcase_21 AC 74 ms
51,388 KB
testcase_22 AC 94 ms
51,256 KB
testcase_23 AC 104 ms
52,052 KB
testcase_24 AC 54 ms
50,348 KB
testcase_25 AC 55 ms
50,320 KB
testcase_26 AC 55 ms
50,396 KB
testcase_27 AC 56 ms
50,316 KB
testcase_28 AC 56 ms
50,360 KB
testcase_29 AC 54 ms
50,120 KB
testcase_30 AC 55 ms
50,328 KB
testcase_31 AC 55 ms
50,192 KB
testcase_32 AC 121 ms
51,952 KB
testcase_33 AC 97 ms
52,052 KB
testcase_34 AC 115 ms
52,124 KB
testcase_35 AC 105 ms
52,032 KB
testcase_36 AC 116 ms
51,996 KB
testcase_37 AC 115 ms
51,964 KB
testcase_38 AC 114 ms
51,724 KB
testcase_39 AC 116 ms
52,224 KB
testcase_40 AC 117 ms
52,108 KB
testcase_41 AC 116 ms
52,172 KB
testcase_42 AC 114 ms
52,188 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();
        char prev = 'n';
        for (char c : sc.next().toCharArray()) {
            if (c == 'w') {
                if (prev == 'w') {
                    System.out.println("No");
                    return;
                }
                prev = 'w';
            } else if (c == 'a' || c == 'o') {
                if (prev != 'w' && prev != '?') {
                    System.out.println("No");
                    return;
                }
                prev = 'a';
            } else if (c == 'n') {
                if (prev == 'w') {
                    System.out.println("No");
                    return;
                }
                prev = 'n';
            } else if (c == '?') {
                if (prev == 'w') {
                    prev = 'a';
                } else {
                    prev = '?';
                }
            } else {
                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