結果
問題 |
No.1882 Areas of Triangle
|
ユーザー |
![]() |
提出日時 | 2022-04-21 09:52:50 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 131 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 27,488 KB |
最終ジャッジ日時 | 2024-06-22 07:51:05 |
合計ジャッジ時間 | 4,201 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 -- * 4 |
other | AC * 3 TLE * 1 -- * 20 |
ソースコード
N,K=map(int,input().split()) A=[int(s) for s in input().split()] sm=0 K2=2*K for i in A: for j in A: if i*j>=K2: sm+=1 print(sm)