結果
| 問題 | 
                            No.1882 Areas of Triangle
                             | 
                    
| ユーザー | 
                             | 
                    
| 提出日時 | 2022-05-27 14:20:17 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 236 ms / 2,000 ms | 
| コード長 | 153 bytes | 
| コンパイル時間 | 101 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 21,676 KB | 
| 最終ジャッジ日時 | 2024-09-20 15:14:23 | 
| 合計ジャッジ時間 | 2,956 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 5 | 
| other | AC * 24 | 
ソースコード
#yuki1882 import bisect n,k=map(int,input().split()) l=sorted(map(int,input().split())) res=0 for i in l: res+=n-bisect.bisect_left(l,2*k/i) print(res)