結果

問題 No.2517 Right Triangles on Circle
ユーザー ShirotsumeShirotsume
提出日時 2023-08-29 22:21:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 171,720 KB
最終ジャッジ日時 2024-06-09 21:42:46
合計ジャッジ時間 6,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,928 KB
testcase_01 AC 43 ms
55,304 KB
testcase_02 AC 44 ms
55,440 KB
testcase_03 AC 47 ms
56,360 KB
testcase_04 AC 44 ms
55,772 KB
testcase_05 AC 45 ms
55,868 KB
testcase_06 AC 45 ms
56,688 KB
testcase_07 AC 44 ms
55,516 KB
testcase_08 AC 46 ms
55,112 KB
testcase_09 AC 44 ms
55,884 KB
testcase_10 AC 44 ms
56,976 KB
testcase_11 AC 45 ms
56,572 KB
testcase_12 AC 47 ms
55,696 KB
testcase_13 AC 213 ms
164,444 KB
testcase_14 AC 120 ms
114,952 KB
testcase_15 AC 203 ms
171,580 KB
testcase_16 AC 200 ms
171,720 KB
testcase_17 AC 183 ms
143,168 KB
testcase_18 AC 164 ms
136,828 KB
testcase_19 AC 159 ms
110,512 KB
testcase_20 AC 156 ms
130,184 KB
testcase_21 AC 212 ms
167,608 KB
testcase_22 AC 65 ms
82,064 KB
testcase_23 AC 168 ms
140,592 KB
testcase_24 AC 108 ms
107,680 KB
testcase_25 AC 61 ms
79,288 KB
testcase_26 AC 200 ms
150,084 KB
testcase_27 AC 64 ms
80,700 KB
testcase_28 AC 71 ms
82,904 KB
testcase_29 AC 94 ms
104,136 KB
testcase_30 AC 79 ms
91,560 KB
testcase_31 AC 166 ms
141,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n, m = mi()

a = li()

if m % 2:
    print(0)
    exit()
C = Counter(a)
ans = 0
for i in range(n):
    ans += C[(a[i] - m // 2 - 1) % m + 1] * (n - 2)

print(ans // 2)
0