結果
| 問題 | No.2373 wa, wo, n |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-07-07 22:28:21 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 5 ms / 2,000 ms |
| + 112µs | |
| コード長 | 1,088 bytes |
| 記録 | |
| コンパイル時間 | 4,807 ms |
| コンパイル使用メモリ | 426,596 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-22 06:52:34 |
| 合計ジャッジ時間 | 7,535 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 39 |
ソースコード
#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;
}