結果

問題 No.2517 Right Triangles on Circle
ユーザー lloyzlloyz
提出日時 2023-10-27 21:33:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 136,864 KB
最終ジャッジ日時 2024-09-25 13:38:07
合計ジャッジ時間 5,273 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,124 KB
testcase_01 AC 38 ms
52,192 KB
testcase_02 AC 37 ms
52,948 KB
testcase_03 AC 38 ms
52,336 KB
testcase_04 AC 39 ms
53,268 KB
testcase_05 AC 40 ms
54,560 KB
testcase_06 AC 43 ms
58,212 KB
testcase_07 AC 39 ms
52,776 KB
testcase_08 AC 42 ms
57,648 KB
testcase_09 AC 40 ms
52,736 KB
testcase_10 AC 43 ms
58,472 KB
testcase_11 AC 39 ms
52,192 KB
testcase_12 AC 38 ms
52,816 KB
testcase_13 AC 264 ms
121,868 KB
testcase_14 AC 114 ms
109,864 KB
testcase_15 AC 277 ms
136,864 KB
testcase_16 AC 225 ms
136,764 KB
testcase_17 AC 219 ms
114,936 KB
testcase_18 AC 212 ms
112,560 KB
testcase_19 AC 194 ms
114,144 KB
testcase_20 AC 195 ms
114,712 KB
testcase_21 AC 269 ms
126,684 KB
testcase_22 AC 60 ms
78,884 KB
testcase_23 AC 212 ms
109,608 KB
testcase_24 AC 127 ms
94,340 KB
testcase_25 AC 55 ms
75,032 KB
testcase_26 AC 242 ms
119,544 KB
testcase_27 AC 57 ms
77,196 KB
testcase_28 AC 89 ms
82,180 KB
testcase_29 AC 126 ms
93,980 KB
testcase_30 AC 101 ms
86,052 KB
testcase_31 AC 216 ms
110,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

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

if m % 2 == 1:
    print(0)
    exit()
A.sort()
A2 = [A[i] + m for i in range(n)]
A = A + A2
ans = 0
for i in range(n):
    a = A[i]
    idx = bisect_left(A, a + m // 2)
    if A[idx] == a + m // 2:
        ans += n - 2
print(ans // 2)
0