結果

問題 No.1527 Input Constant is Good
ユーザー hihumikan
提出日時 2021-06-05 02:57:44
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 13,784 ms
コンパイル使用メモリ 402,628 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-20 17:56:33
合計ジャッジ時間 14,740 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

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