結果

問題 No.2517 Right Triangles on Circle
ユーザー flippergoflippergo
提出日時 2024-11-08 17:34:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,608 KB
最終ジャッジ日時 2024-11-08 17:34:27
合計ジャッジ時間 5,740 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 49 ms
52,096 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 43 ms
51,968 KB
testcase_13 AC 230 ms
114,672 KB
testcase_14 AC 184 ms
114,524 KB
testcase_15 AC 243 ms
129,544 KB
testcase_16 AC 227 ms
129,608 KB
testcase_17 AC 217 ms
116,480 KB
testcase_18 AC 190 ms
114,688 KB
testcase_19 AC 176 ms
109,312 KB
testcase_20 AC 178 ms
109,568 KB
testcase_21 AC 235 ms
119,564 KB
testcase_22 AC 77 ms
79,872 KB
testcase_23 AC 180 ms
104,124 KB
testcase_24 AC 126 ms
91,904 KB
testcase_25 AC 71 ms
75,776 KB
testcase_26 AC 206 ms
113,440 KB
testcase_27 AC 81 ms
77,952 KB
testcase_28 AC 87 ms
81,024 KB
testcase_29 AC 115 ms
92,032 KB
testcase_30 AC 96 ms
84,608 KB
testcase_31 AC 184 ms
105,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
N,M = map(int,input().split())
A = sorted(list(map(int,input().split())))
ans = 0
if M%2==0:
    for i in range(N):
        if A[i]>M//2:break
        j = bisect_left(A,A[i]+M//2)
        if j<N and A[j]==A[i]+M//2:
            ans += N-2
print(ans)
0