結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー
提出日時 2024-05-03 22:07:25
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 12,126 ms
コンパイル使用メモリ 402,304 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 02:54:39
合計ジャッジ時間 13,552 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
	let mut s = String::new();
	std::io::stdin().read_line(&mut s).ok();
	let a = ["4", "6"].iter().all(|p| s.contains(p));
	println!("{}", if a { "Beautiful" } else { "..." });
}
0