結果

問題 No.558 575検出するやつ
ユーザー atuk721
提出日時 2017-11-20 02:18:48
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 12,385 ms
コンパイル使用メモリ 376,216 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 00:55:13
合計ジャッジ時間 12,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io;

fn main() {
    let mut buf = String::new();
    io::stdin().read_line(&mut buf).unwrap();
    let result = if buf.contains("575") { "YES" } else { "NO" };
    println!("{}", result)
}
0