結果

問題 No.2517 Right Triangles on Circle
ユーザー 👑 KA37RIKA37RI
提出日時 2023-10-27 23:01:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 622 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,400 KB
最終ジャッジ日時 2024-09-25 15:01:52
合計ジャッジ時間 5,306 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 298 ms
40,524 KB
testcase_14 AC 174 ms
40,524 KB
testcase_15 AC 288 ms
43,400 KB
testcase_16 AC 290 ms
43,356 KB
testcase_17 AC 242 ms
35,704 KB
testcase_18 AC 226 ms
35,260 KB
testcase_19 AC 197 ms
33,808 KB
testcase_20 AC 199 ms
33,968 KB
testcase_21 AC 289 ms
40,764 KB
testcase_22 AC 77 ms
22,708 KB
testcase_23 AC 213 ms
34,880 KB
testcase_24 AC 107 ms
22,840 KB
testcase_25 AC 65 ms
18,176 KB
testcase_26 AC 250 ms
38,852 KB
testcase_27 AC 70 ms
18,960 KB
testcase_28 AC 62 ms
16,848 KB
testcase_29 AC 106 ms
23,208 KB
testcase_30 AC 73 ms
17,512 KB
testcase_31 AC 219 ms
36,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = [int(x) for x in input().split()]
a = [int(x) for x in input().split()]
a = set(a)
if m % 2 == 1:
	print(0)
	exit()
ans = 0
for ai in a:
	if ai - m // 2 in a:
		ans += 1
print(ans * (n - 2))
0