結果

問題 No.1882 Areas of Triangle
ユーザー shika_126
提出日時 2022-03-23 17:14:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 136 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,780 KB
最終ジャッジ日時 2024-10-11 20:16:22
合計ジャッジ時間 3,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 -- * 4
other AC * 3 TLE * 1 -- * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
l = [int(i) for i in input().split()]
s = 0
for i in l:
    s += len([1 for x in l if 2*k/i<=x])
print(s)
0