結果

問題 No.1882 Areas of Triangle
ユーザー ohanaohana
提出日時 2023-09-29 11:51:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 91,480 KB
最終ジャッジ日時 2024-07-22 06:14:26
合計ジャッジ時間 2,936 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,896 KB
testcase_01 AC 35 ms
52,272 KB
testcase_02 AC 36 ms
52,064 KB
testcase_03 AC 37 ms
53,312 KB
testcase_04 AC 128 ms
89,760 KB
testcase_05 AC 112 ms
91,468 KB
testcase_06 AC 82 ms
91,480 KB
testcase_07 AC 36 ms
52,904 KB
testcase_08 AC 35 ms
52,060 KB
testcase_09 AC 36 ms
52,476 KB
testcase_10 AC 36 ms
52,464 KB
testcase_11 AC 36 ms
52,828 KB
testcase_12 AC 35 ms
52,060 KB
testcase_13 AC 37 ms
52,432 KB
testcase_14 AC 35 ms
53,016 KB
testcase_15 AC 36 ms
52,940 KB
testcase_16 AC 41 ms
59,460 KB
testcase_17 AC 49 ms
63,904 KB
testcase_18 AC 50 ms
65,620 KB
testcase_19 AC 53 ms
72,912 KB
testcase_20 AC 53 ms
72,728 KB
testcase_21 AC 53 ms
71,580 KB
testcase_22 AC 65 ms
75,972 KB
testcase_23 AC 77 ms
78,716 KB
testcase_24 AC 67 ms
79,164 KB
testcase_25 AC 36 ms
52,820 KB
testcase_26 AC 37 ms
53,628 KB
testcase_27 AC 36 ms
52,216 KB
testcase_28 AC 37 ms
52,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n, k = map(int, input().split())
A = list(map(int, input().split()))
A.sort()

ans = 0

for a in A:
    ans += n - bisect.bisect_left(A, 2 * k / a)

print(ans)
0