結果

問題 No.2517 Right Triangles on Circle
ユーザー Theta
提出日時 2023-11-21 19:12:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,420 KB
最終ジャッジ日時 2024-09-26 07:18:16
合計ジャッジ時間 7,206 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right


def main():
    N, M = map(int, input().split())
    A = sorted(map(int, input().split()))
    if M % 2 == 1:
        print(0)
        return

    triangles = 0
    for a_elm in A:
        if a_elm * 2 > M:
            break
        opposite = a_elm + M // 2
        idx_1 = bisect_left(A, opposite)
        idx_2 = bisect_right(A, opposite)
        if idx_1 < idx_2:
            triangles += N - 2

    print(triangles)


if __name__ == "__main__":
    main()
0