結果

問題 No.2517 Right Triangles on Circle
ユーザー 👑 rin204rin204
提出日時 2023-10-27 21:30:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 169,072 KB
最終ジャッジ日時 2024-09-25 13:33:36
合計ジャッジ時間 4,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,124 KB
testcase_01 AC 38 ms
51,824 KB
testcase_02 AC 39 ms
52,424 KB
testcase_03 AC 38 ms
52,308 KB
testcase_04 AC 37 ms
53,172 KB
testcase_05 AC 38 ms
52,156 KB
testcase_06 AC 38 ms
52,808 KB
testcase_07 AC 37 ms
53,620 KB
testcase_08 AC 38 ms
53,024 KB
testcase_09 AC 38 ms
52,120 KB
testcase_10 AC 38 ms
52,828 KB
testcase_11 AC 37 ms
52,432 KB
testcase_12 AC 37 ms
53,236 KB
testcase_13 AC 220 ms
159,424 KB
testcase_14 AC 205 ms
159,500 KB
testcase_15 AC 213 ms
168,788 KB
testcase_16 AC 217 ms
169,072 KB
testcase_17 AC 174 ms
117,604 KB
testcase_18 AC 163 ms
113,196 KB
testcase_19 AC 156 ms
115,696 KB
testcase_20 AC 152 ms
111,648 KB
testcase_21 AC 220 ms
163,676 KB
testcase_22 AC 86 ms
98,324 KB
testcase_23 AC 176 ms
136,604 KB
testcase_24 AC 100 ms
103,908 KB
testcase_25 AC 79 ms
91,204 KB
testcase_26 AC 189 ms
147,392 KB
testcase_27 AC 83 ms
95,084 KB
testcase_28 AC 69 ms
80,924 KB
testcase_29 AC 95 ms
102,628 KB
testcase_30 AC 78 ms
87,416 KB
testcase_31 AC 175 ms
136,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
cnt = {}
ans = 0
for a in A:
    a *= 4
    a %= 4 * m
    cnt[a] = cnt.get(a, 0) + 1

for a in cnt.keys():
    if a >= 2 * m:
        continue
    b = a + 2 * m
    ca = cnt.get(a, 0)
    cb = cnt.get(b, 0)
    ans += ca * cb * (n - ca - cb)

print(ans)
0