結果

問題 No.2373 wa, wo, n
ユーザー とろちゃとろちゃ
提出日時 2023-07-07 21:54:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 1,332 bytes
コンパイル時間 896 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-07-21 17:47:30
合計ジャッジ時間 4,291 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,376 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 45 ms
53,888 KB
testcase_05 AC 45 ms
53,504 KB
testcase_06 AC 45 ms
54,016 KB
testcase_07 AC 49 ms
53,504 KB
testcase_08 AC 45 ms
53,504 KB
testcase_09 AC 45 ms
53,632 KB
testcase_10 AC 45 ms
53,504 KB
testcase_11 AC 45 ms
53,632 KB
testcase_12 AC 45 ms
54,016 KB
testcase_13 AC 46 ms
53,504 KB
testcase_14 AC 109 ms
88,368 KB
testcase_15 AC 72 ms
70,784 KB
testcase_16 AC 110 ms
89,472 KB
testcase_17 AC 76 ms
73,472 KB
testcase_18 AC 61 ms
64,896 KB
testcase_19 AC 53 ms
64,000 KB
testcase_20 AC 58 ms
71,040 KB
testcase_21 AC 53 ms
64,256 KB
testcase_22 AC 56 ms
67,200 KB
testcase_23 AC 60 ms
73,216 KB
testcase_24 AC 48 ms
53,120 KB
testcase_25 AC 50 ms
53,376 KB
testcase_26 AC 51 ms
53,760 KB
testcase_27 AC 49 ms
54,144 KB
testcase_28 AC 46 ms
53,760 KB
testcase_29 AC 45 ms
53,632 KB
testcase_30 AC 46 ms
53,760 KB
testcase_31 AC 46 ms
53,504 KB
testcase_32 AC 118 ms
89,728 KB
testcase_33 AC 83 ms
88,704 KB
testcase_34 AC 103 ms
90,112 KB
testcase_35 AC 82 ms
88,704 KB
testcase_36 AC 103 ms
90,112 KB
testcase_37 AC 94 ms
89,728 KB
testcase_38 AC 98 ms
89,848 KB
testcase_39 AC 91 ms
89,600 KB
testcase_40 AC 111 ms
90,240 KB
testcase_41 AC 114 ms
89,984 KB
testcase_42 AC 98 ms
89,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit;pypyjit.set_param("max_unroll_recursion=-1")
# from bisect import *
from collections import *

# from heapq import *
# from itertools import *
# from math import *
# from datetime import *
# from decimal import *  # PyPyだと遅い
# from string import ascii_lowercase,ascii_uppercase
# import numpy as np
import sys
import os

# sys.setrecursionlimit(10**6) # PyPyだと遅い
INF = 10**18
MOD = 998244353
# MOD = 10**9 + 7
isFile = os.path.exists("input.txt")
File = open("input.txt", "r", encoding="utf-8") if isFile else sys.stdin


def input():
    return File.readline()[:-1]


# ///////////////////////////////////////////////////////////////////////////


N = int(input())
S = deque(input())

for _ in range(INF):
    # print(S)
    if len(S) == 0:
        break
    if len(S) == 1:
        if S[0] not in ["n", "?"]:
            print("No")
            exit()
        else:
            break

    if S[0] == "n":
        S.popleft()
        continue
    elif S[0] == "w":
        S.popleft()
        if S[0] not in ["a", "o", "?"]:
            print("No")
            exit()
        else:
            S.popleft()
    else:
        if S[0] != "?":
            print("No")
            exit()
        else:
            S.popleft()
            if S[0] in ["a", "o"]:
                S.popleft()

print("Yes")
0