結果
| 問題 | 
                            No.1799 Summer Day
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2022-01-08 00:48:59 | 
| 言語 | Rust  (1.83.0 + proconio)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 812 bytes | 
| コンパイル時間 | 13,453 ms | 
| コンパイル使用メモリ | 400,308 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-11-14 09:19:58 | 
| 合計ジャッジ時間 | 14,534 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 20 WA * 1 | 
ソースコード
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);
}