結果

問題 No.2517 Right Triangles on Circle
ユーザー KudeKude
提出日時 2023-10-27 21:30:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 147,788 KB
最終ジャッジ日時 2024-09-25 13:34:20
合計ジャッジ時間 4,541 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n, m = map(int, input().split())
a = Counter(map(int, input().split()))
if m % 2:
    print(0)
    exit()
m2 = m // 2
ans = 0
for k, v1 in a.items():
    if k <= m2:
        v2 = a.get(k + m2, 0)
        ans += v1 * v2 * (n - v1 - v2)
print(ans)
0