結果

問題 No.2373 wa, wo, n
ユーザー miya145592miya145592
提出日時 2023-07-07 21:55:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 63,488 KB
最終ジャッジ日時 2024-07-21 17:48:24
合計ジャッジ時間 3,521 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
i = 0
while i<N:
    if i+1<N and S[i]=="w" and (S[i+1]=="a" or S[i+1]=="o" or S[i+1]=="?"):
        i+=2
    elif S[i]=="n":
        i+=1
    elif i+1<N and S[i]=="?" and (S[i+1]=="a" or S[i+1]=="o"):
        i+=2
    elif S[i]=="?":
        i+=1
    else:
        print("No")
        exit()
print("Yes")
0