結果

問題 No.1110 好きな歌
ユーザー RuiRui
提出日時 2022-12-13 12:51:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 376 ms / 5,000 ms
コード長 963 bytes
コンパイル時間 1,613 ms
コンパイル使用メモリ 173,084 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 08:49:01
合計ジャッジ時間 13,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 4 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 218 ms
5,248 KB
testcase_25 AC 257 ms
5,248 KB
testcase_26 AC 138 ms
5,248 KB
testcase_27 AC 261 ms
5,248 KB
testcase_28 AC 150 ms
5,248 KB
testcase_29 AC 305 ms
5,248 KB
testcase_30 AC 147 ms
5,248 KB
testcase_31 AC 91 ms
5,248 KB
testcase_32 AC 337 ms
5,248 KB
testcase_33 AC 164 ms
5,248 KB
testcase_34 AC 229 ms
5,248 KB
testcase_35 AC 343 ms
5,248 KB
testcase_36 AC 40 ms
5,248 KB
testcase_37 AC 103 ms
5,248 KB
testcase_38 AC 297 ms
5,248 KB
testcase_39 AC 223 ms
5,248 KB
testcase_40 AC 265 ms
5,248 KB
testcase_41 AC 23 ms
5,248 KB
testcase_42 AC 321 ms
5,248 KB
testcase_43 AC 294 ms
5,248 KB
testcase_44 AC 336 ms
5,248 KB
testcase_45 AC 363 ms
5,248 KB
testcase_46 AC 360 ms
5,248 KB
testcase_47 AC 376 ms
5,248 KB
testcase_48 AC 358 ms
5,248 KB
testcase_49 AC 334 ms
5,248 KB
testcase_50 AC 353 ms
5,248 KB
testcase_51 AC 341 ms
5,248 KB
testcase_52 AC 359 ms
5,248 KB
testcase_53 AC 367 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;

typedef long long ll;
//typedef modint1000000007 mint;
const int MOD = 1000000007;
#define all(x) x.begin(), x.end()
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
const int inf = 1 << 30;
const ll INF = 1LL << 60;
const int dx[8] = {1, 0, -1, 0, -1, -1, 1, 1};
const int dy[8] = {0, 1, 0, -1, -1, 1, -1, 1};
template <class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }
template <class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }

int main(){
    int n, d;
    cin >> n >> d;
    vector<int> a(n);
    rep(i, n) cin >> a[i];

    vector<int> b = a;
    sort(all(b));

    rep(i, n){
        if(a[i] < b[0] + d){
            cout << 0 << endl;
            continue;
        }
        auto it = lower_bound(all(b), a[i] - d + 1);
        cout << it - b.begin() << endl;
    }

    return 0;
}
0