結果
問題 | No.1882 Areas of Triangle |
ユーザー |
![]() |
提出日時 | 2022-08-23 23:44:09 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 596 bytes |
コンパイル時間 | 1,275 ms |
コンパイル使用メモリ | 121,780 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 06:07:26 |
合計ジャッジ時間 | 2,786 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 24 |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<map> #include<math.h> #define all(x) x.begin(),x.end() #define gall(x) x.begin(),x.end(),greater<>() #define pb push_back #define ll long long #define P pair<double,double> #define LP pair<ll,ll> using namespace std; int main() { ll n,k,ans=0; cin >>n>>k; vector<ll> a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } sort(all(a)); for (int i = 0; i < n; i++) { ll tmp = lower_bound(a.begin(), a.end(), (2 * k + a[i] - 1) / a[i]) -a.begin(); ans += n - tmp; } cout << ans << endl; return 0; }