結果

問題 No.2517 Right Triangles on Circle
ユーザー rlangevinrlangevin
提出日時 2023-10-27 21:31:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 146,168 KB
最終ジャッジ日時 2024-09-25 13:34:41
合計ジャッジ時間 4,091 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,616 KB
testcase_01 AC 36 ms
51,964 KB
testcase_02 AC 37 ms
52,572 KB
testcase_03 AC 37 ms
52,108 KB
testcase_04 AC 37 ms
52,336 KB
testcase_05 AC 36 ms
52,304 KB
testcase_06 AC 35 ms
52,488 KB
testcase_07 AC 36 ms
53,296 KB
testcase_08 AC 37 ms
52,664 KB
testcase_09 AC 36 ms
52,708 KB
testcase_10 AC 35 ms
52,688 KB
testcase_11 AC 36 ms
53,632 KB
testcase_12 AC 37 ms
52,400 KB
testcase_13 AC 148 ms
136,512 KB
testcase_14 AC 133 ms
135,592 KB
testcase_15 AC 178 ms
146,168 KB
testcase_16 AC 173 ms
145,928 KB
testcase_17 AC 147 ms
136,280 KB
testcase_18 AC 131 ms
130,520 KB
testcase_19 AC 118 ms
121,940 KB
testcase_20 AC 118 ms
122,800 KB
testcase_21 AC 171 ms
140,368 KB
testcase_22 AC 64 ms
86,188 KB
testcase_23 AC 135 ms
120,668 KB
testcase_24 AC 79 ms
94,512 KB
testcase_25 AC 60 ms
81,908 KB
testcase_26 AC 157 ms
129,584 KB
testcase_27 AC 64 ms
84,640 KB
testcase_28 AC 59 ms
74,064 KB
testcase_29 AC 78 ms
91,532 KB
testcase_30 AC 65 ms
81,664 KB
testcase_31 AC 141 ms
120,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = set(map(int, input().split()))
if M % 2:
    print(0)
    exit()
    
ans = 0
for a in A:
    if (a + M // 2)%M in A or (a + M // 2)%M + M in A:
        ans += N - 2
        
print(ans//2)
0