結果
| 問題 | No.1882 Areas of Triangle |
| ユーザー |
shika_126
|
| 提出日時 | 2022-03-23 17:14:43 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 328 ms |
| コンパイル使用メモリ | 20,572 KB |
| 実行使用メモリ | 30,364 KB |
| 最終ジャッジ日時 | 2026-04-28 05:13:19 |
| 合計ジャッジ時間 | 4,823 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 -- * 4 |
| other | AC * 3 TLE * 1 -- * 20 |
ソースコード
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)
shika_126