結果

問題 No.2517 Right Triangles on Circle
ユーザー べんけのーびべんけのーび
提出日時 2023-10-30 16:47:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 214 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 171,796 KB
最終ジャッジ日時 2024-09-25 17:19:12
合計ジャッジ時間 5,276 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 WA -
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
51,840 KB
testcase_12 AC 42 ms
51,584 KB
testcase_13 WA -
testcase_14 AC 225 ms
160,716 KB
testcase_15 AC 250 ms
170,816 KB
testcase_16 RE -
testcase_17 AC 197 ms
118,688 KB
testcase_18 AC 187 ms
113,252 KB
testcase_19 AC 173 ms
139,264 KB
testcase_20 AC 176 ms
139,648 KB
testcase_21 AC 244 ms
165,580 KB
testcase_22 AC 93 ms
93,184 KB
testcase_23 AC 194 ms
137,172 KB
testcase_24 AC 111 ms
100,480 KB
testcase_25 AC 86 ms
86,656 KB
testcase_26 AC 216 ms
149,244 KB
testcase_27 AC 89 ms
89,984 KB
testcase_28 AC 74 ms
76,928 KB
testcase_29 AC 109 ms
99,840 KB
testcase_30 AC 85 ms
84,992 KB
testcase_31 AC 199 ms
137,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(ans)
0