結果

問題 No.734 Careful Engineer
ユーザー 特命ログイン特命ログイン
提出日時 2018-09-28 22:48:40
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 710 bytes
コンパイル時間 12,126 ms
コンパイル使用メモリ 404,296 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 07:06:46
合計ジャッジ時間 12,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 WA -
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::{stdin, Read};

fn main() {
    let mut buf = String::new();
    stdin().read_to_string(&mut buf).unwrap();
    let mut tok = buf.split_whitespace();
    let mut get = || tok.next().unwrap();
    macro_rules! get {
        ($t:ty) => (get().parse::<$t>().unwrap());
        () => (get!(i64));
    }
    
    let a = get!() * 60;
    let b = get!();
    let c = get!() * 60 * 60;
    
    // a*x < b*x + c (better manual)
    // x < c/(a-b)
    // x < ceil(c/(a-b))
    // a*x >= b*x + c (better auto)
    // (a-b)*x >= c
    // x >= c/(a-b)
    // x > floor(c/(a-b))
    
    if a <= b {
        println!("-1");
    } else {
        let x = c / (a - b);
        println!("{}", x + 1);
    }
    
}
0