結果

問題 No.2517 Right Triangles on Circle
ユーザー hiro1729hiro1729
提出日時 2023-10-27 21:25:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 169,304 KB
最終ジャッジ日時 2024-09-25 13:26:28
合計ジャッジ時間 4,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n, m = map(int, input().split())
if m % 2 == 1:
	print(0)
	exit()
m //= 2
a = list(map(int, input().split()))
s = set()
for i in a:
	s.add(i)
ans = 0
for i in a:
	if m + i in s:
		ans += n - 2
print(ans)
0