結果

問題 No.2736 About half
ユーザー t33ft33f
提出日時 2024-04-21 10:43:38
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 13,972 ms
コンパイル使用メモリ 403,296 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-13 09:34:39
合計ジャッジ時間 12,445 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case)]
use proconio::{input};

fn main() {
    input!{ a: i32, b: i32 }
    println!("{}", if 2 * a < b || 2 * b < a { "No" } else { "Yes" } );
}
0