結果

問題 No.2517 Right Triangles on Circle
ユーザー miya145592miya145592
提出日時 2023-10-27 22:20:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 211,744 KB
最終ジャッジ日時 2024-09-25 14:22:09
合計ジャッジ時間 5,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,524 KB
testcase_01 AC 41 ms
54,512 KB
testcase_02 AC 41 ms
55,728 KB
testcase_03 AC 42 ms
54,428 KB
testcase_04 AC 42 ms
53,992 KB
testcase_05 AC 41 ms
54,280 KB
testcase_06 AC 42 ms
54,440 KB
testcase_07 AC 42 ms
54,500 KB
testcase_08 AC 42 ms
55,040 KB
testcase_09 AC 41 ms
54,392 KB
testcase_10 AC 42 ms
55,236 KB
testcase_11 AC 42 ms
55,132 KB
testcase_12 AC 41 ms
53,756 KB
testcase_13 AC 284 ms
211,744 KB
testcase_14 AC 112 ms
113,028 KB
testcase_15 AC 219 ms
170,548 KB
testcase_16 AC 214 ms
170,824 KB
testcase_17 AC 211 ms
147,912 KB
testcase_18 AC 202 ms
139,684 KB
testcase_19 AC 165 ms
113,088 KB
testcase_20 AC 163 ms
111,860 KB
testcase_21 AC 236 ms
167,896 KB
testcase_22 AC 61 ms
81,376 KB
testcase_23 AC 177 ms
137,176 KB
testcase_24 AC 109 ms
106,704 KB
testcase_25 AC 58 ms
76,496 KB
testcase_26 AC 200 ms
149,628 KB
testcase_27 AC 60 ms
78,304 KB
testcase_28 AC 70 ms
80,372 KB
testcase_29 AC 98 ms
102,128 KB
testcase_30 AC 79 ms
88,536 KB
testcase_31 AC 179 ms
140,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import math
import sys
input = sys.stdin.readline
N, M = map(int, input().split())
A = list(map(int, input().split()))
if M%2==1:
    print(0)
    exit()
D = defaultdict(int)
for a in A:
    D[a%M] += 1
ans = 0
used = set()
for a in D:
    na = a + M//2
    na %= M
    if a in used:
        continue
    if na in used:
        continue
    if na not in D:
        continue
    ans += D[a]*D[na]*(N-D[a]-D[na])
    used.add(a)
    used.add(na)
print(ans)
0