結果

問題 No.2373 wa, wo, n
ユーザー
提出日時 2024-07-18 15:35:08
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 23,806 ms
コンパイル使用メモリ 397,844 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 15:35:36
合計ジャッジ時間 16,246 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 2
other AC * 15 WA * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

fn g() -> Vec<char> {
	let mut s = String::new();
	std::io::stdin().read_line(&mut s).ok();
	s.chars().collect()
}
fn main() {
	g();
	let s = g();
	let c = "aonw?";
	if !c.contains(s[0]) || !c.contains(s[1]) {
		println!("No");
		return;
	}
	for i in 1..s.len() - 1 {
		if !c.contains(s[i + 1]) {
			println!("No");
			return;
		}
		match (s[i - 1], s[i], s[i + 1]) {
			('w', '?', 'a') | ('w', '?', 'o') => {
				println!("No");
				return;
			}
			_ => {}
		}
	}
	println!("Yes")
}
0