結果

問題 No.1799 Summer Day
ユーザー Masaki Kitaguchi
提出日時 2022-01-08 00:53:56
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 11,937 ms
コンパイル使用メモリ 400,392 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 09:20:33
合計ジャッジ時間 12,948 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut buf = String::new();
    let mut input = {
        use std::io::Read;
        std::io::stdin().read_to_string(&mut buf).unwrap();
        buf.split_whitespace()
    };

    let n: usize = input.next().unwrap().parse().unwrap();
    let s: usize = input.next().unwrap().parse().unwrap();

    let output = match n {
        1 => {
            if s >= 25 && s < 30 {
                "Yes"
            } else {
                "No"
            }
        }
        _ => {
            if s < 25 {
                "No"
            } else if s < 30 {
                "Yes"
            } else {
                if (s - 29) <= 29 * (n - 1) {
                    "Yes"
                } else {
                    "No"
                }
            }
        }
    };

    println!("{}", output);
}
0