結果

問題 No.2517 Right Triangles on Circle
ユーザー ThetaTheta
提出日時 2023-11-21 19:12:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 32 ms
10,496 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,496 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 379 ms
42,556 KB
testcase_14 AC 228 ms
42,552 KB
testcase_15 AC 372 ms
43,420 KB
testcase_16 AC 482 ms
43,244 KB
testcase_17 AC 304 ms
35,460 KB
testcase_18 AC 290 ms
33,812 KB
testcase_19 AC 254 ms
29,748 KB
testcase_20 AC 257 ms
31,244 KB
testcase_21 AC 369 ms
40,652 KB
testcase_22 AC 79 ms
19,572 KB
testcase_23 AC 272 ms
33,500 KB
testcase_24 AC 135 ms
21,768 KB
testcase_25 AC 71 ms
18,068 KB
testcase_26 AC 310 ms
38,692 KB
testcase_27 AC 76 ms
18,852 KB
testcase_28 AC 72 ms
15,168 KB
testcase_29 AC 130 ms
21,304 KB
testcase_30 AC 89 ms
16,740 KB
testcase_31 AC 268 ms
34,036 KB
権限があれば一括ダウンロードができます

ソースコード

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