結果

問題 No.2517 Right Triangles on Circle
ユーザー べんけのーびべんけのーび
提出日時 2023-10-30 16:55:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 171,484 KB
最終ジャッジ日時 2024-09-25 17:19:26
合計ジャッジ時間 5,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
52,084 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 39 ms
52,348 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 210 ms
160,544 KB
testcase_14 AC 206 ms
160,340 KB
testcase_15 AC 238 ms
171,484 KB
testcase_16 AC 242 ms
171,468 KB
testcase_17 AC 195 ms
143,864 KB
testcase_18 AC 175 ms
113,120 KB
testcase_19 AC 172 ms
139,392 KB
testcase_20 AC 175 ms
139,392 KB
testcase_21 AC 241 ms
165,436 KB
testcase_22 AC 92 ms
93,696 KB
testcase_23 AC 190 ms
137,160 KB
testcase_24 AC 112 ms
101,120 KB
testcase_25 AC 84 ms
87,296 KB
testcase_26 AC 215 ms
149,096 KB
testcase_27 AC 89 ms
90,880 KB
testcase_28 AC 75 ms
77,440 KB
testcase_29 AC 107 ms
100,480 KB
testcase_30 AC 85 ms
85,120 KB
testcase_31 AC 196 ms
137,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(lambda x:int(x)%M, input().split()))
A.sort()
Aset = set(A)
if M%2:
	print(0)
	exit()
ans = 0
i = 0
while i < N and A[i] < M//2:
	if (A[i] + M//2) % M in Aset:
		ans += N-2
	i += 1

print(ans)
0