結果

問題 No.1882 Areas of Triangle
ユーザー ああいいああいい
提出日時 2022-03-24 18:17:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 87,224 KB
最終ジャッジ日時 2024-10-13 02:00:20
合計ジャッジ時間 3,037 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,816 KB
testcase_01 AC 33 ms
53,080 KB
testcase_02 AC 33 ms
52,820 KB
testcase_03 AC 33 ms
52,340 KB
testcase_04 AC 78 ms
86,572 KB
testcase_05 AC 81 ms
87,224 KB
testcase_06 AC 61 ms
85,244 KB
testcase_07 AC 35 ms
52,024 KB
testcase_08 AC 35 ms
52,688 KB
testcase_09 AC 35 ms
53,520 KB
testcase_10 AC 34 ms
51,904 KB
testcase_11 AC 35 ms
53,296 KB
testcase_12 AC 34 ms
52,804 KB
testcase_13 AC 35 ms
52,084 KB
testcase_14 AC 33 ms
53,360 KB
testcase_15 AC 34 ms
52,528 KB
testcase_16 AC 34 ms
52,212 KB
testcase_17 AC 41 ms
59,996 KB
testcase_18 AC 41 ms
60,804 KB
testcase_19 AC 43 ms
62,936 KB
testcase_20 AC 45 ms
62,800 KB
testcase_21 AC 45 ms
63,732 KB
testcase_22 AC 45 ms
63,100 KB
testcase_23 AC 53 ms
68,704 KB
testcase_24 AC 53 ms
67,768 KB
testcase_25 AC 36 ms
52,572 KB
testcase_26 AC 35 ms
52,212 KB
testcase_27 AC 35 ms
52,464 KB
testcase_28 AC 34 ms
53,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
A.sort()

right = N - 1
ans = 0
for left in range(N):
    while right >= 0 and A[left] * A[right] >= 2 * K:
        right -= 1
    ans += N - 1 - right
print(ans)
        
0