結果

問題 No.1882 Areas of Triangle
ユーザー _matumo_
提出日時 2022-04-21 09:52:50
言語 Python3
(3.14.3 + numpy 2.4.2 + scipy 1.17.0)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
TLE  
実行時間 -
コード長 131 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 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
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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)
0