結果

問題 No.1672 404 Not Found
ユーザー akakimidori
提出日時 2021-08-14 02:29:53
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 292 bytes
コンパイル時間 10,896 ms
コンパイル使用メモリ 402,724 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-11 21:41:37
合計ジャッジ時間 11,762 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

fn read() -> usize {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).unwrap();
    s.trim().parse::<usize>().unwrap()
}

fn main() {
    let s = read();
    let d = s / 100;
    if d == 4 || d == 5 {
        println!("Yes");
    } else {
        println!("No");
    }
}
0