結果

問題 No.1882 Areas of Triangle
ユーザー lllllll88938494lllllll88938494
提出日時 2022-06-22 00:03:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 90,948 KB
最終ジャッジ日時 2024-10-15 01:55:16
合計ジャッジ時間 3,842 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,944 KB
testcase_01 AC 37 ms
52,404 KB
testcase_02 AC 36 ms
53,284 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 373 ms
90,772 KB
testcase_07 AC 39 ms
53,192 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,976 KB
testcase_11 AC 38 ms
52,952 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 36 ms
52,208 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 96 ms
75,972 KB
testcase_21 AC 75 ms
75,820 KB
testcase_22 AC 112 ms
76,428 KB
testcase_23 AC 176 ms
78,716 KB
testcase_24 AC 169 ms
79,256 KB
testcase_25 WA -
testcase_26 AC 36 ms
52,604 KB
testcase_27 AC 37 ms
52,820 KB
testcase_28 AC 37 ms
52,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left as bl , bisect_right as br

n,k=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
ans=0

def  c(x,y):
    return x*y / 2 >= k

def  nb(x):
    ng = 1 
    ok = 10**10
    while ok - ng > 1:
        mid=(ok + ng) / 2
        if c(x,mid):
            ok = mid
        else:
            ng = mid
    return ok
for i in range(n):
    t=nb(a[i])
    ans+= n - bl(a,t)
    
print(ans)
0