結果

問題 No.1882 Areas of Triangle
ユーザー ripityripity
提出日時 2022-03-20 11:27:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 760 ms / 2,000 ms
コード長 1,223 bytes
コンパイル時間 3,785 ms
コンパイル使用メモリ 76,952 KB
実行使用メモリ 51,348 KB
最終ジャッジ日時 2024-10-10 12:04:27
合計ジャッジ時間 12,310 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,900 KB
testcase_01 AC 135 ms
41,500 KB
testcase_02 AC 138 ms
41,980 KB
testcase_03 AC 140 ms
41,780 KB
testcase_04 AC 736 ms
49,328 KB
testcase_05 AC 760 ms
49,240 KB
testcase_06 AC 713 ms
51,348 KB
testcase_07 AC 144 ms
41,820 KB
testcase_08 AC 137 ms
41,336 KB
testcase_09 AC 136 ms
41,584 KB
testcase_10 AC 132 ms
41,308 KB
testcase_11 AC 140 ms
41,128 KB
testcase_12 AC 142 ms
41,388 KB
testcase_13 AC 140 ms
41,632 KB
testcase_14 AC 139 ms
41,740 KB
testcase_15 AC 137 ms
41,496 KB
testcase_16 AC 185 ms
42,224 KB
testcase_17 AC 203 ms
42,656 KB
testcase_18 AC 220 ms
44,668 KB
testcase_19 AC 306 ms
48,340 KB
testcase_20 AC 314 ms
48,236 KB
testcase_21 AC 305 ms
48,308 KB
testcase_22 AC 316 ms
48,236 KB
testcase_23 AC 472 ms
47,776 KB
testcase_24 AC 480 ms
48,368 KB
testcase_25 AC 135 ms
41,404 KB
testcase_26 AC 136 ms
41,124 KB
testcase_27 AC 140 ms
41,692 KB
testcase_28 AC 137 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    
    public static PrintWriter pw = new PrintWriter(System.out);
    public static Scanner sc = new Scanner(System.in);
    
    public static void main(String[] args) {
        
        int t = 1;
        while( t > 0 ) {
            solve();
            t--;
        }
        
        pw.flush();
        
    }
    
    static void solve() {
        
        int N = sc.nextInt();
        long K = sc.nextLong();
        long[] a = new long[N+1];
        long ans = 0;
        
        a[N] = (long)1<<60;
        for( int i = 0; i < N; i++ ) {
            a[i] = sc.nextInt();
        }
        
        Arrays.sort(a);
        
        for( int i = 0; i < N; i++ ) {
            int res = lowerBound(a,(2*K+a[i]-1)/a[i]);
            if( res != -1 ) ans += N-res;
        }
        
        pw.println(ans);
        
    }
    
    static int lowerBound(long[] a, long val) {
        
        int low = 0;
        int high = a.length-1;
        int mid = 0;
        while( low < high ) {
            mid = (low+high)/2;
            if( a[mid] < val ) low = mid+1;
            else high = mid;
        }
        
        return high;
        
    }
    
}
0