結果

問題 No.3064 Speedrun (Easy)
ユーザー kyotoku1483
提出日時 2025-03-25 16:56:33
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 12,509 ms
コンパイル使用メモリ 402,144 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-03-25 16:57:21
合計ジャッジ時間 13,517 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused)]
use proconio::{input, marker::Chars};

fn main() {
    input! {
        a: i32,
        b: i32,
        c: i32,
        d: i32,
        p: i32,
        q: i32,
        r: i32,
        s: i32,
        t: i32,
    }
    if a * p + b * q + c * r + d * s <= t {
        println!("Yes")
    } else {
        println!("No")
    }
}
0