結果

問題 No.1110 好きな歌
ユーザー syomusyomu
提出日時 2020-07-10 22:36:40
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 944 bytes
コンパイル時間 1,864 ms
コンパイル使用メモリ 165,760 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-19 17:50:37
合計ジャッジ時間 10,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,948 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 RE -
testcase_05 AC 2 ms
6,944 KB
testcase_06 RE -
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> //全てのヘッダファイルをインクルード

//ループ
#define rep(i, n) for(int i = 0; i < (n); i++) //普通のループ
#define repr(i, n) for(int i = n; i >= 0; i--) //逆ループ

//型名省略
typedef long long ll;
//値
static const ll MX = 100005;
static const ll MX_ll = 1e18;

using namespace std;

//ソート
#define SIZE_OF_ARRAY(array) (sizeof(array)/sizeof(array[0]))

//#include "./lib/generic/search.h"

int main(){
    int n, d;
    cin >> n >> d;
    int a[n], b[n], amax=0;
    rep(i, n){
        cin >> a[i];
        b[i] = a[i];
        amax = max(amax, a[i]);
    }
    int ans[amax];
    std::sort(b, b + SIZE_OF_ARRAY(b));
    int cnt = 0;
    rep(i, n){
        cnt = 0;
        rep(j, n){
            if(b[i]<b[j]) break;
            if(i!=j && b[i]-b[j]>=d) cnt++;
        }
        ans[b[i]] = cnt;
    }
    rep(i, n){
        cout << ans[a[i]] << endl;
    }
    return 0;
}
0