結果

問題 No.2517 Right Triangles on Circle
ユーザー tassei903tassei903
提出日時 2023-10-27 22:06:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 507 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 165,912 KB
最終ジャッジ日時 2024-09-25 14:11:18
合計ジャッジ時間 4,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,692 KB
testcase_01 AC 42 ms
53,052 KB
testcase_02 AC 38 ms
52,280 KB
testcase_03 AC 37 ms
52,848 KB
testcase_04 AC 38 ms
52,128 KB
testcase_05 AC 38 ms
52,156 KB
testcase_06 AC 38 ms
53,448 KB
testcase_07 AC 39 ms
52,204 KB
testcase_08 AC 39 ms
51,880 KB
testcase_09 AC 39 ms
52,540 KB
testcase_10 AC 38 ms
52,108 KB
testcase_11 AC 38 ms
52,516 KB
testcase_12 AC 38 ms
52,216 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n, m = na()

if m % 2:
    print(0)
    exit()
a = na()
s = set(a)
ans = 0
for i in range(n):
    if a[i] + m//2 in a:
        ans += 1

print(ans*(n-2))
0