# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
654072 | atharvd | A Huge Tower (CEOI10_tower) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<vector>
#include<string>
#include<algorithm>
#include<cmath>
#include<fstream>
#define for_n(i,a,n) for (int i=a;i<n;i++)
#define pb push_back
#define mp(i, j) make_pair(i, j)
typedef long long ll;
using namespace std;
int main(){
int n, d;
cin >> n >> d;
int arr[n];
for(int i = 0; i < n; i++){
cin >> arr[i];
}
sort(arr, arr + n);
int l = 0;
int w = 0;
ll count = 1;
const mod = 1000000009;
for(int r=0;r < n;r++) {
for(;l < r;l++) {
if(arr[r]-arr[l] <= d) break;
w--;
}
w++;
count *= w;
count %= mod;
}
cout << count << endl;
}