結果

問題 No.1882 Areas of Triangle
ユーザー H20H20
提出日時 2022-03-22 20:40:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 91,604 KB
最終ジャッジ日時 2024-10-10 14:55:47
合計ジャッジ時間 2,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,112 KB
testcase_01 AC 37 ms
52,416 KB
testcase_02 AC 37 ms
52,708 KB
testcase_03 AC 36 ms
52,680 KB
testcase_04 AC 112 ms
89,968 KB
testcase_05 AC 116 ms
91,604 KB
testcase_06 AC 81 ms
90,940 KB
testcase_07 AC 38 ms
53,072 KB
testcase_08 AC 39 ms
52,452 KB
testcase_09 AC 38 ms
52,664 KB
testcase_10 AC 37 ms
52,564 KB
testcase_11 AC 37 ms
52,596 KB
testcase_12 AC 37 ms
52,548 KB
testcase_13 AC 36 ms
53,536 KB
testcase_14 AC 38 ms
52,196 KB
testcase_15 AC 37 ms
52,560 KB
testcase_16 AC 42 ms
59,908 KB
testcase_17 AC 47 ms
63,268 KB
testcase_18 AC 48 ms
65,120 KB
testcase_19 AC 52 ms
71,708 KB
testcase_20 AC 52 ms
72,608 KB
testcase_21 AC 52 ms
72,444 KB
testcase_22 AC 56 ms
73,844 KB
testcase_23 AC 71 ms
78,940 KB
testcase_24 AC 68 ms
78,692 KB
testcase_25 AC 36 ms
52,828 KB
testcase_26 AC 36 ms
52,756 KB
testcase_27 AC 37 ms
53,216 KB
testcase_28 AC 36 ms
52,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,K = map(int, input().split())
A = list(map(int, input().split())) 
A.sort()
ans = 0
for a in A:
    ans += N-bisect.bisect_left(A,-(-(2*K)//a))
print(ans)
0