結果

問題 No.1882 Areas of Triangle
ユーザー okkuukenken
提出日時 2022-06-17 17:05:10
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 1,574 ms
コンパイル使用メモリ 88,824 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 22:20:29
合計ジャッジ時間 2,572 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int main(){
	int n,a[100000];
	long long k;
	cin>>n>>k;
	for(int i=0;i<n;i++)
		cin>>a[i];
	sort(a,a+n);
	long long ans=0;
	for(int i=0;i<n;i++)
		ans+=a+n-lower_bound(a,a+n,(k*2+a[i]-1)/a[i]);
	cout<<ans<<endl;
}
0