結果
| 問題 | No.1882 Areas of Triangle |
| ユーザー |
_matumo_
|
| 提出日時 | 2022-04-21 09:52:50 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 131 bytes |
| 記録 | |
| コンパイル時間 | 718 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 23,844 KB |
| 最終ジャッジ日時 | 2026-03-06 13:21:56 |
| 合計ジャッジ時間 | 171,037 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 14 TLE * 10 |
ソースコード
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)
_matumo_