結果

問題 No.1110 好きな歌
ユーザー fukafukatanifukafukatani
提出日時 2020-10-10 10:17:55
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 292 ms / 5,000 ms
コード長 1,236 bytes
コンパイル時間 14,084 ms
コンパイル使用メモリ 377,212 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-07-20 15:42:11
合計ジャッジ時間 22,884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 0 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 181 ms
5,376 KB
testcase_25 AC 216 ms
5,376 KB
testcase_26 AC 101 ms
5,376 KB
testcase_27 AC 195 ms
5,376 KB
testcase_28 AC 113 ms
5,376 KB
testcase_29 AC 245 ms
5,376 KB
testcase_30 AC 107 ms
5,376 KB
testcase_31 AC 68 ms
5,376 KB
testcase_32 AC 254 ms
5,376 KB
testcase_33 AC 139 ms
5,376 KB
testcase_34 AC 186 ms
5,376 KB
testcase_35 AC 292 ms
5,504 KB
testcase_36 AC 31 ms
5,376 KB
testcase_37 AC 86 ms
5,376 KB
testcase_38 AC 263 ms
5,376 KB
testcase_39 AC 188 ms
5,376 KB
testcase_40 AC 230 ms
5,376 KB
testcase_41 AC 18 ms
5,376 KB
testcase_42 AC 239 ms
5,376 KB
testcase_43 AC 229 ms
5,376 KB
testcase_44 AC 274 ms
5,632 KB
testcase_45 AC 276 ms
5,632 KB
testcase_46 AC 270 ms
5,504 KB
testcase_47 AC 286 ms
5,632 KB
testcase_48 AC 277 ms
5,632 KB
testcase_49 AC 260 ms
5,632 KB
testcase_50 AC 275 ms
5,632 KB
testcase_51 AC 274 ms
5,632 KB
testcase_52 AC 277 ms
5,632 KB
testcase_53 AC 286 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let v = read_vec::<i64>();
    let (n, d) = (v[0] as usize, v[1]);
    let mut a = vec![0; n];
    for i in 0..n {
        a[i] = read::<i64>();
    }
    let mut a_sorted = a.clone();
    a_sorted.sort();

    for anum in a {
        let ans = a_sorted.upper_bound(&(anum - d));
        println!("{}", ans);
    }
}

fn read<T: std::str::FromStr>() -> T {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    s.trim().parse().ok().unwrap()
}

fn read_vec<T: std::str::FromStr>() -> Vec<T> {
    read::<String>()
        .split_whitespace()
        .map(|e| e.parse().ok().unwrap())
        .collect()
}

use std::cmp::Ordering;

pub trait BinarySearch<T> {
    fn upper_bound(&self, x: &T) -> usize;
}

impl<T: Ord> BinarySearch<T> for [T] {
    fn upper_bound(&self, x: &T) -> usize {
        let mut low = 0;
        let mut high = self.len();

        while low != high {
            let mid = (low + high) / 2;
            match self[mid].cmp(x) {
                Ordering::Less | Ordering::Equal => {
                    low = mid + 1;
                }
                Ordering::Greater => {
                    high = mid;
                }
            }
        }
        low
    }
}
0