結果

問題 No.1882 Areas of Triangle
ユーザー ripityripity
提出日時 2022-03-20 15:58:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 3,176 ms
コンパイル使用メモリ 223,964 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-10 12:04:39
合計ジャッジ時間 4,299 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 47 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 6 ms
6,820 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 1 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

void solve() {
    
    int N;
    ll K;
    cin >> N >> K;
    ll ans = 0;
    vector<ll> a(N+1);
    
    a[N] = 1<<30;
    for( int i = 0; i < N; i++ ) {
        cin >> a[i];
    }
    
    sort(a.begin(),a.end());
    
    for( int i = 0; i < N; i++ ) {
        ll j = lower_bound(a.begin(),a.end(),(2*K+a[i]-1)/a[i])-a.begin();
        ans += N-j;
    }
    
    cout << ans << "\n";
    
}

int main() {
    
    int t = 1;
    while( t > 0 ) {
        solve();
        t--;
    }
    
}
0