結果

問題 No.2517 Right Triangles on Circle
ユーザー FromBooskaFromBooska
提出日時 2023-10-27 21:49:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 171,620 KB
最終ジャッジ日時 2024-09-25 13:57:02
合計ジャッジ時間 5,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,544 KB
testcase_01 AC 39 ms
52,192 KB
testcase_02 AC 38 ms
53,212 KB
testcase_03 AC 37 ms
53,168 KB
testcase_04 AC 37 ms
52,772 KB
testcase_05 AC 38 ms
52,580 KB
testcase_06 AC 39 ms
52,668 KB
testcase_07 AC 38 ms
53,312 KB
testcase_08 AC 39 ms
52,484 KB
testcase_09 AC 37 ms
52,824 KB
testcase_10 AC 38 ms
53,140 KB
testcase_11 AC 38 ms
52,428 KB
testcase_12 AC 39 ms
52,004 KB
testcase_13 AC 210 ms
160,328 KB
testcase_14 AC 205 ms
160,708 KB
testcase_15 AC 236 ms
171,620 KB
testcase_16 AC 236 ms
170,704 KB
testcase_17 AC 188 ms
118,260 KB
testcase_18 AC 175 ms
113,156 KB
testcase_19 AC 157 ms
137,960 KB
testcase_20 AC 164 ms
139,464 KB
testcase_21 AC 235 ms
165,404 KB
testcase_22 AC 87 ms
94,124 KB
testcase_23 AC 184 ms
137,652 KB
testcase_24 AC 101 ms
100,560 KB
testcase_25 AC 78 ms
87,492 KB
testcase_26 AC 208 ms
148,712 KB
testcase_27 AC 82 ms
91,984 KB
testcase_28 AC 66 ms
77,232 KB
testcase_29 AC 100 ms
100,412 KB
testcase_30 AC 77 ms
84,644 KB
testcase_31 AC 185 ms
137,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 直径が何個あるか
# M%2=1なら0

N, M = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
A_set = set(A)
if M%2 == 1:
    print(0)
else:
    ans = 0
    for a in A:
        if a+M//2 in A_set:
            ans += N-2
    print(ans)
0