結果

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

ソースコード

diff #

fn g() -> Vec<char> {
	let mut s = String::new();
	std::io::stdin().read_line(&mut s).ok();
	s.trim().chars().collect()
}
fn main() {
	g();
	let mut s = g();
	s.push('n');
	s.push('n');
	let c = "aonw?";
	if !"nw?".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')
			| ('w', 'w', _)
			| ('w', 'n', _)
			| ('n', 'a', _)
			| ('n', 'o', _)
			| (_, 'w', 'n')
			| (_, 'w', 'w')
			| (_, 'a', 'a')
			| (_, 'a', 'o')
			| (_, 'o', 'a')
			| (_, 'o', 'o')
			| (_, 'n', 'a')
			| (_, 'n', 'o') => {
				println!("No");
				return;
			}
			_ => {}
		}
	}
	println!("Yes")
}
0