結果

問題 No.2517 Right Triangles on Circle
ユーザー hato336hato336
提出日時 2023-10-28 09:00:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 188,672 KB
最終ジャッジ日時 2024-09-25 16:12:08
合計ジャッジ時間 7,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
85,632 KB
testcase_01 AC 131 ms
85,760 KB
testcase_02 AC 132 ms
85,864 KB
testcase_03 AC 132 ms
85,376 KB
testcase_04 AC 134 ms
85,632 KB
testcase_05 AC 133 ms
85,504 KB
testcase_06 AC 133 ms
85,764 KB
testcase_07 AC 129 ms
85,504 KB
testcase_08 AC 130 ms
85,632 KB
testcase_09 AC 132 ms
85,632 KB
testcase_10 AC 132 ms
85,504 KB
testcase_11 AC 132 ms
85,632 KB
testcase_12 AC 133 ms
85,632 KB
testcase_13 AC 267 ms
187,648 KB
testcase_14 AC 138 ms
85,888 KB
testcase_15 AC 291 ms
179,876 KB
testcase_16 AC 286 ms
179,912 KB
testcase_17 AC 249 ms
167,808 KB
testcase_18 AC 244 ms
159,488 KB
testcase_19 AC 229 ms
151,552 KB
testcase_20 AC 225 ms
151,808 KB
testcase_21 AC 271 ms
188,672 KB
testcase_22 AC 136 ms
85,812 KB
testcase_23 AC 234 ms
159,856 KB
testcase_24 AC 185 ms
118,400 KB
testcase_25 AC 137 ms
85,760 KB
testcase_26 AC 253 ms
169,984 KB
testcase_27 AC 136 ms
85,632 KB
testcase_28 AC 163 ms
99,200 KB
testcase_29 AC 182 ms
118,144 KB
testcase_30 AC 169 ms
106,368 KB
testcase_31 AC 233 ms
160,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)


#alist = []
#s = input()
n,m = map(int,input().split())
if m %2:
    exit(print(0))
#for i in range(n):
#    alist.append(list(map(int,input().split())))
alist = list(map(int,input().split()))
s = set(alist)
ans = 0
for i in alist:
    if i + m//2 in s:
        ans += n-2
print(ans)
0