結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,136 KB
testcase_01 AC 39 ms
52,604 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
52,260 KB
testcase_04 AC 39 ms
53,076 KB
testcase_05 AC 39 ms
53,832 KB
testcase_06 AC 39 ms
52,384 KB
testcase_07 AC 39 ms
53,312 KB
testcase_08 AC 39 ms
52,612 KB
testcase_09 AC 38 ms
53,640 KB
testcase_10 AC 38 ms
52,288 KB
testcase_11 AC 39 ms
53,076 KB
testcase_12 AC 39 ms
51,880 KB
testcase_13 AC 294 ms
210,224 KB
testcase_14 AC 265 ms
210,372 KB
testcase_15 AC 298 ms
229,292 KB
testcase_16 AC 294 ms
229,364 KB
testcase_17 AC 233 ms
158,044 KB
testcase_18 AC 215 ms
149,108 KB
testcase_19 AC 192 ms
140,156 KB
testcase_20 AC 195 ms
139,900 KB
testcase_21 AC 285 ms
214,200 KB
testcase_22 AC 102 ms
112,404 KB
testcase_23 AC 216 ms
173,072 KB
testcase_24 AC 125 ms
122,316 KB
testcase_25 AC 92 ms
103,876 KB
testcase_26 AC 245 ms
188,264 KB
testcase_27 AC 97 ms
108,656 KB
testcase_28 AC 71 ms
86,136 KB
testcase_29 AC 121 ms
121,444 KB
testcase_30 AC 84 ms
98,428 KB
testcase_31 AC 222 ms
172,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import math

N,M=map(int,input().split())
A=list(map(int,input().split()))

diff=M/2

set_A=set(A)

ans=0
for a in A:
    if a+diff in set_A:
        ans+=N-2

print(ans)
0