結果

問題 No.1110 好きな歌
ユーザー ksukegamesksukegames
提出日時 2023-03-25 13:43:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 394 ms / 5,000 ms
コード長 529 bytes
コンパイル時間 6,666 ms
コンパイル使用メモリ 310,092 KB
実行使用メモリ 4,948 KB
最終ジャッジ日時 2023-10-19 00:39:39
合計ジャッジ時間 20,716 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 3 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 3 ms
4,348 KB
testcase_17 AC 4 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 3 ms
4,348 KB
testcase_20 AC 3 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 3 ms
4,348 KB
testcase_23 AC 2 ms
4,348 KB
testcase_24 AC 222 ms
4,420 KB
testcase_25 AC 270 ms
4,420 KB
testcase_26 AC 144 ms
4,348 KB
testcase_27 AC 267 ms
4,420 KB
testcase_28 AC 154 ms
4,348 KB
testcase_29 AC 319 ms
4,684 KB
testcase_30 AC 150 ms
4,348 KB
testcase_31 AC 96 ms
4,348 KB
testcase_32 AC 357 ms
4,684 KB
testcase_33 AC 171 ms
4,348 KB
testcase_34 AC 241 ms
4,420 KB
testcase_35 AC 364 ms
4,948 KB
testcase_36 AC 41 ms
4,348 KB
testcase_37 AC 106 ms
4,348 KB
testcase_38 AC 319 ms
4,684 KB
testcase_39 AC 237 ms
4,420 KB
testcase_40 AC 289 ms
4,684 KB
testcase_41 AC 24 ms
4,348 KB
testcase_42 AC 335 ms
4,684 KB
testcase_43 AC 319 ms
4,684 KB
testcase_44 AC 370 ms
4,948 KB
testcase_45 AC 384 ms
4,948 KB
testcase_46 AC 380 ms
4,948 KB
testcase_47 AC 394 ms
4,948 KB
testcase_48 AC 382 ms
4,948 KB
testcase_49 AC 360 ms
4,948 KB
testcase_50 AC 383 ms
4,948 KB
testcase_51 AC 376 ms
4,948 KB
testcase_52 AC 382 ms
4,948 KB
testcase_53 AC 394 ms
4,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define ll long long
#define rep(i,n) for (int i = 0; i < (n); i++)
#define coutf(f) cout << fixed << setprecision(f)
#define all(v) (v).begin(), (v).end()
#define rall(v) (v).rbegin(), (v).rend()

int main() {
	int n, d;
	cin >> n >> d;
	vector<int> a(n), b(n);
	rep(i, n) cin >> a[i];
	rep(i, n) b[i] = a[i];
	sort(all(b));
	rep(i, n) {
		auto iter = upper_bound(all(b), a[i] - d);
		cout << iter - b.begin() << endl;
	}
	return 0;
}
0