結果

問題 No.2373 wa, wo, n
ユーザー kinugoshi8928
提出日時 2023-07-07 22:28:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 1,088 bytes
コンパイル時間 6,357 ms
コンパイル使用メモリ 398,364 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-21 18:36:35
合計ジャッジ時間 7,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#include <boost/multiprecision/cpp_int.hpp>
using namespace std;
using namespace atcoder;
using namespace boost::multiprecision;
using ll = long long;
using mint = modint998244353;
#define all(v) v.begin(), v.end()
#define rep(a, b) for(long long a = 0; a < (long long)(b); a++)
int op(int a, int b) { return min(a, b); }
int e() { return 2147483647; }

int main() {
    int N;
    string S;
    cin >> N >> S;
    rep(i, N) {
        if(S[i] == 'n')
            continue;
        if(i != N-1 && (S[i+1] == 'a' || S[i+1] == 'o')){
            i++;
            continue;
        }
        if(S[i] == '?')
            continue;
        if(S[i] == 'w') {
            if(i == N - 1) {
                cout << "No" << endl;
                return 0;
            }
            if(S[i + 1] == 'a' || S[i + 1] == 'o' || S[i + 1] == '?') {
                i++;
                continue;
            }
            cout << "No" << endl;
            return 0;
        }
        cout << "No" << endl;
        return 0;
    }
    cout << "Yes" << endl;
}
0