結果

問題 No.2373 wa, wo, n
ユーザー ⁣
提出日時 2024-07-18 15:35:08
言語 Rust
(1.77.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,248 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 2 ms
5,376 KB
testcase_34 WA -
testcase_35 AC 2 ms
5,376 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

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