結果

問題 No.2517 Right Triangles on Circle
ユーザー hiryuNhiryuN
提出日時 2023-10-27 22:09:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 168,184 KB
最終ジャッジ日時 2024-09-25 14:14:07
合計ジャッジ時間 4,223 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,568 KB
testcase_01 AC 37 ms
53,288 KB
testcase_02 AC 38 ms
53,120 KB
testcase_03 AC 38 ms
52,532 KB
testcase_04 AC 38 ms
52,740 KB
testcase_05 AC 38 ms
54,020 KB
testcase_06 AC 38 ms
53,080 KB
testcase_07 AC 38 ms
52,784 KB
testcase_08 AC 37 ms
51,964 KB
testcase_09 AC 39 ms
53,144 KB
testcase_10 AC 38 ms
52,644 KB
testcase_11 AC 38 ms
53,656 KB
testcase_12 AC 38 ms
51,748 KB
testcase_13 AC 177 ms
158,248 KB
testcase_14 AC 37 ms
52,276 KB
testcase_15 AC 191 ms
168,128 KB
testcase_16 AC 191 ms
168,184 KB
testcase_17 AC 156 ms
116,880 KB
testcase_18 AC 145 ms
111,796 KB
testcase_19 AC 132 ms
136,132 KB
testcase_20 AC 139 ms
138,244 KB
testcase_21 AC 194 ms
162,356 KB
testcase_22 AC 38 ms
53,040 KB
testcase_23 AC 152 ms
135,592 KB
testcase_24 AC 86 ms
101,088 KB
testcase_25 AC 38 ms
51,684 KB
testcase_26 AC 172 ms
146,704 KB
testcase_27 AC 37 ms
52,068 KB
testcase_28 AC 60 ms
77,168 KB
testcase_29 AC 83 ms
98,812 KB
testcase_30 AC 68 ms
85,444 KB
testcase_31 AC 154 ms
135,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
if m%2==1:
	print(0)
	exit()
ans=0
A=list(map(int,input().split()))
B=set(A)
for i in A:
	if i+m//2 in B or i-m//2 in B:
		ans+=n-2
print(ans//2)
0