結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tonyu0tonyu0
提出日時 2020-03-30 21:18:15
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 608 ms / 5,000 ms
コード長 788 bytes
コンパイル時間 27,191 ms
コンパイル使用メモリ 379,040 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-11-08 13:15:13
合計ジャッジ時間 42,549 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 608 ms
5,632 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 229 ms
5,248 KB
testcase_03 AC 438 ms
5,248 KB
testcase_04 AC 601 ms
5,248 KB
testcase_05 AC 601 ms
5,248 KB
testcase_06 AC 602 ms
5,248 KB
testcase_07 AC 604 ms
5,376 KB
testcase_08 AC 598 ms
5,504 KB
testcase_09 AC 602 ms
5,376 KB
testcase_10 AC 541 ms
5,248 KB
testcase_11 AC 574 ms
5,248 KB
testcase_12 AC 521 ms
5,248 KB
testcase_13 AC 552 ms
5,248 KB
testcase_14 AC 573 ms
5,248 KB
testcase_15 AC 513 ms
5,248 KB
testcase_16 AC 602 ms
5,248 KB
testcase_17 AC 600 ms
5,248 KB
testcase_18 AC 599 ms
5,248 KB
testcase_19 AC 602 ms
5,504 KB
testcase_20 AC 602 ms
5,376 KB
testcase_21 AC 605 ms
5,376 KB
testcase_22 AC 544 ms
5,248 KB
testcase_23 AC 572 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 13 ms
5,248 KB
testcase_26 AC 5 ms
5,248 KB
testcase_27 AC 4 ms
5,248 KB
testcase_28 AC 98 ms
5,248 KB
testcase_29 AC 48 ms
5,248 KB
testcase_30 AC 13 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::*;

fn check(x: f64, k: usize, a: &Vec<f64>) -> bool {
    let mut res = 0;
    for i in 0..a.len() {
        res += (a[i] / x) as usize;
    }
    return res >= k;
}

fn main() {
    let mut s: String = String::new();
    std::io::stdin().read_to_string(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let n: usize = itr.next().unwrap().parse().unwrap();
    let a: Vec<f64> = (0..n)
        .map(|_| itr.next().unwrap().parse().unwrap())
        .collect();
    let k: usize = itr.next().unwrap().parse().unwrap();

    let mut l = 0.0;
    let mut r = 100000000000.0;
    for _ in 0..1000 {
        let mid = (l + r) / 2.0;
        if check(mid, k, &a) {
            l = mid;
        } else {
            r = mid;
        }
    }
    println!("{}", l);
}
0