結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,428 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,332 KB
testcase_03 WA -
testcase_04 AC 35 ms
51,936 KB
testcase_05 AC 35 ms
52,740 KB
testcase_06 AC 36 ms
53,912 KB
testcase_07 AC 36 ms
52,180 KB
testcase_08 AC 36 ms
53,556 KB
testcase_09 AC 34 ms
51,816 KB
testcase_10 AC 35 ms
52,236 KB
testcase_11 AC 36 ms
52,292 KB
testcase_12 AC 36 ms
52,152 KB
testcase_13 AC 169 ms
158,204 KB
testcase_14 WA -
testcase_15 AC 188 ms
167,748 KB
testcase_16 AC 188 ms
168,060 KB
testcase_17 AC 152 ms
116,720 KB
testcase_18 AC 140 ms
111,948 KB
testcase_19 AC 134 ms
136,240 KB
testcase_20 AC 141 ms
138,004 KB
testcase_21 AC 196 ms
162,600 KB
testcase_22 WA -
testcase_23 AC 154 ms
135,936 KB
testcase_24 AC 89 ms
99,584 KB
testcase_25 WA -
testcase_26 AC 171 ms
146,588 KB
testcase_27 WA -
testcase_28 AC 63 ms
75,904 KB
testcase_29 AC 85 ms
98,132 KB
testcase_30 AC 70 ms
84,096 KB
testcase_31 AC 156 ms
135,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
if m%2==1:
	print(0)
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