結果

問題 No.2373 wa, wo, n
ユーザー MMMM
提出日時 2023-06-23 00:03:33
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 2,250 ms
コンパイル使用メモリ 212,588 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-07-02 11:27:24
合計ジャッジ時間 3,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 21 ms
14,840 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 23 ms
15,932 KB
testcase_17 AC 8 ms
6,784 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 9 ms
7,896 KB
testcase_20 AC 19 ms
14,460 KB
testcase_21 AC 8 ms
7,680 KB
testcase_22 AC 14 ms
10,624 KB
testcase_23 AC 22 ms
16,384 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 26 ms
17,536 KB
testcase_33 AC 23 ms
17,512 KB
testcase_34 AC 25 ms
17,536 KB
testcase_35 AC 24 ms
17,536 KB
testcase_36 AC 25 ms
17,408 KB
testcase_37 AC 24 ms
17,472 KB
testcase_38 AC 24 ms
17,536 KB
testcase_39 AC 24 ms
17,408 KB
testcase_40 AC 25 ms
17,408 KB
testcase_41 AC 24 ms
17,392 KB
testcase_42 AC 22 ms
17,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
  int N; string S;
  cin >> N >> S;
  vector<vector<bool>> dp(N+1, vector<bool>(4, false));
  map<char,int> M;
  M['w'] = 0; M['a'] = 1; M['o'] = 2; M['n'] = 3;
  dp[0][3] = true;
  for(int i = 0; i < N; i++)
    for(int j = 0; j < 4; j++){
      if(dp[i][j]){
        if(j==-0){
          dp[i+1][1] = (S[i]=='a'||S[i] == '?');
          dp[i+1][2] = (S[i]=='o'||S[i] == '?');
        } else {
          dp[i+1][0] = (S[i]=='w'||S[i] == '?');
          dp[i+1][3] = (S[i]=='n'||S[i] == '?');
        }
      }
    }
  bool can = 0;
  for(int i = 0; i < 4; i++)
    can = can | dp[N][i];
  cout << (can ? "Yes":"No") << endl;
}
0