結果

問題 No.1882 Areas of Triangle
ユーザー horiesiniti
提出日時 2023-05-13 16:00:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,804 KB
最終ジャッジ日時 2024-11-29 08:18:33
合計ジャッジ時間 3,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
k*=2
xs=sorted(list(map(int,input().split())))
pl=0
ans=0
for pr in range(n-1,-1,-1):
	while pl<n:
		if xs[pl]*xs[pr]>=k:
			ans+=n-pl
			break
		else:
			pl+=1
	if n<=pl:break
print(ans)
0