結果

問題 No.1093 区間の和 / Sum of Range
ユーザー phsplsphspls
提出日時 2020-06-29 23:08:05
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,204 bytes
コンパイル時間 12,114 ms
コンパイル使用メモリ 376,608 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 06:06:16
合計ジャッジ時間 17,667 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 73 ms
5,248 KB
testcase_02 AC 34 ms
5,376 KB
testcase_03 AC 12 ms
5,376 KB
testcase_04 AC 8 ms
5,376 KB
testcase_05 AC 104 ms
5,376 KB
testcase_06 AC 19 ms
5,376 KB
testcase_07 AC 59 ms
5,376 KB
testcase_08 AC 43 ms
5,376 KB
testcase_09 AC 94 ms
5,376 KB
testcase_10 AC 48 ms
5,376 KB
testcase_11 AC 97 ms
5,376 KB
testcase_12 AC 54 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 110 ms
5,376 KB
testcase_15 AC 22 ms
5,376 KB
testcase_16 AC 127 ms
5,376 KB
testcase_17 AC 111 ms
5,376 KB
testcase_18 AC 69 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 56 ms
5,376 KB
testcase_21 AC 125 ms
5,376 KB
testcase_22 AC 121 ms
5,376 KB
testcase_23 AC 92 ms
5,376 KB
testcase_24 AC 14 ms
5,376 KB
testcase_25 AC 108 ms
5,376 KB
testcase_26 AC 76 ms
5,376 KB
testcase_27 AC 118 ms
5,376 KB
testcase_28 AC 68 ms
5,376 KB
testcase_29 AC 132 ms
5,376 KB
testcase_30 AC 17 ms
5,376 KB
testcase_31 AC 22 ms
5,376 KB
testcase_32 AC 33 ms
5,376 KB
testcase_33 AC 116 ms
5,376 KB
testcase_34 AC 8 ms
5,376 KB
testcase_35 AC 141 ms
5,376 KB
testcase_36 AC 97 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut nk = String::new();
    std::io::stdin().read_line(&mut nk).ok();
    let nk: Vec<usize> = nk.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nk[0];
    let k = nk[1];
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let a: Vec<isize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let mut q = String::new();
    std::io::stdin().read_line(&mut q).ok();
    let q: usize = q.trim().parse().unwrap();
    let mut s: Vec<isize> = vec![];
    let first: isize = a.iter().take(k).sum();
    s.push(first);
    for i in 0..n-k {
        let prev = s[i];
        s.push(prev + a[k+i] - a[i]);
    }
    s.sort();
    for _ in 0..q {
        let mut x = String::new();
        std::io::stdin().read_line(&mut x).ok();
        let x: isize = x.trim().parse().unwrap();

        let mut lower: usize = 0;
        let mut upper: usize = s.len();
        while upper > lower {
            let middle = (upper + lower) / 2;
            if s[middle] > x {
                upper = middle;
            } else {
                lower = middle + 1;
            }
        }
        println!("{}", upper);
    }
}
0