結果

問題 No.1110 好きな歌
ユーザー NewGardenNewGarden
提出日時 2020-07-10 21:37:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 857 bytes
コンパイル時間 1,169 ms
コンパイル使用メモリ 102,020 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-10-11 08:19:00
合計ジャッジ時間 6,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 78 ms
5,248 KB
testcase_25 AC 94 ms
5,760 KB
testcase_26 AC 52 ms
5,248 KB
testcase_27 AC 97 ms
5,632 KB
testcase_28 AC 53 ms
5,248 KB
testcase_29 AC 116 ms
6,016 KB
testcase_30 AC 50 ms
5,248 KB
testcase_31 AC 33 ms
5,248 KB
testcase_32 AC 127 ms
6,144 KB
testcase_33 AC 56 ms
5,248 KB
testcase_34 AC 80 ms
5,248 KB
testcase_35 AC 119 ms
6,400 KB
testcase_36 AC 14 ms
5,248 KB
testcase_37 AC 38 ms
5,248 KB
testcase_38 AC 115 ms
5,888 KB
testcase_39 AC 85 ms
5,376 KB
testcase_40 AC 94 ms
5,760 KB
testcase_41 AC 9 ms
5,248 KB
testcase_42 AC 110 ms
6,144 KB
testcase_43 AC 113 ms
6,016 KB
testcase_44 AC 124 ms
6,528 KB
testcase_45 AC 134 ms
6,528 KB
testcase_46 AC 130 ms
6,400 KB
testcase_47 AC 144 ms
6,528 KB
testcase_48 AC 133 ms
6,528 KB
testcase_49 AC 116 ms
6,528 KB
testcase_50 AC 133 ms
6,528 KB
testcase_51 AC 128 ms
6,400 KB
testcase_52 AC 136 ms
6,528 KB
testcase_53 AC 144 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<vector>
#include<iomanip>
#include<math.h>
#include<complex>
#include<queue>
#include<deque>
#include<stack>
#include<map>
#include<set>
#include<bitset>
#include<functional>
#include<assert.h>
#include<numeric>
using namespace std;
typedef pair<int,int> P;
typedef long long ll;
typedef long double ld;
const int inf=1e9+7;
const ll longinf=1LL<<60;
#define REP(i,m,n) for(ll i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)
#define F first
#define S second
constexpr char ln = '\n';

const int mx=200010;
const ll mod=1e9+7;

int main(){
  ll n,d;
  cin >> n >> d;
  vector<ll> a(n);
  rep(i,n){
    cin >> a[i];
  }
  auto b = a;
  sort(b.begin(),b.end());
  rep(i,n){
    int ans = upper_bound(b.begin(),b.end(),a[i]-d) - b.begin();
    cout << ans << ln;
  }

  return 0;
}
0