結果

問題 No.2517 Right Triangles on Circle
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-08 04:59:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 168,080 KB
最終ジャッジ日時 2024-09-25 23:36:54
合計ジャッジ時間 5,875 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,168 KB
testcase_01 AC 52 ms
55,680 KB
testcase_02 AC 46 ms
55,552 KB
testcase_03 AC 48 ms
55,168 KB
testcase_04 AC 47 ms
55,552 KB
testcase_05 AC 47 ms
55,168 KB
testcase_06 AC 47 ms
55,040 KB
testcase_07 AC 46 ms
54,912 KB
testcase_08 AC 46 ms
55,296 KB
testcase_09 AC 48 ms
55,296 KB
testcase_10 AC 48 ms
55,168 KB
testcase_11 AC 47 ms
55,296 KB
testcase_12 AC 47 ms
55,424 KB
testcase_13 AC 228 ms
161,228 KB
testcase_14 AC 219 ms
161,612 KB
testcase_15 AC 252 ms
168,072 KB
testcase_16 AC 245 ms
168,080 KB
testcase_17 AC 195 ms
117,696 KB
testcase_18 AC 190 ms
145,372 KB
testcase_19 AC 165 ms
134,912 KB
testcase_20 AC 173 ms
135,552 KB
testcase_21 AC 245 ms
161,888 KB
testcase_22 AC 99 ms
93,184 KB
testcase_23 AC 185 ms
113,268 KB
testcase_24 AC 118 ms
99,584 KB
testcase_25 AC 98 ms
87,424 KB
testcase_26 AC 215 ms
146,404 KB
testcase_27 AC 93 ms
90,240 KB
testcase_28 AC 80 ms
77,568 KB
testcase_29 AC 109 ms
98,944 KB
testcase_30 AC 87 ms
85,504 KB
testcase_31 AC 187 ms
114,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from functools import *
from itertools import *
from heapq import *
import sys,math
input = sys.stdin.buffer.readline

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

A.sort()
ans = 0
SA = set(A)
if M%2:
    print(0)
    exit()
for a in A:
    
    if a + M//2 in SA:
        ans += N-2
print(ans)
    
0