結果
問題 | No.2373 wa, wo, n |
ユーザー |
![]() |
提出日時 | 2023-07-07 22:39:13 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 69 ms / 2,000 ms |
コード長 | 443 bytes |
コンパイル時間 | 295 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-07-21 18:54:41 |
合計ジャッジ時間 | 3,247 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 39 |
ソースコード
N = int(input()) S = input() for c in S: if c not in 'waon?': exit(print('No')) if 'wn' in S or 'na' in S or 'no' in S: exit(print('No')) T = S.replace('n','').replace('wa','').replace('wo','') if T=='': exit(print('Yes')) T = T.replace('o','a') assert all(c in 'wa?' for c in T) if T[0]=='a' or T[-1]=='w': exit(print('No')) T = T.replace('?a','').replace('w?','') print('Yes'if all(c=='?' for c in T) else 'No')