結果

問題 No.2517 Right Triangles on Circle
ユーザー ntudantuda
提出日時 2023-10-28 11:08:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 168,212 KB
最終ジャッジ日時 2024-09-25 16:16:31
合計ジャッジ時間 4,124 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,628 KB
testcase_01 AC 36 ms
52,620 KB
testcase_02 AC 36 ms
52,672 KB
testcase_03 AC 36 ms
52,904 KB
testcase_04 AC 36 ms
52,624 KB
testcase_05 AC 36 ms
53,016 KB
testcase_06 AC 36 ms
52,980 KB
testcase_07 AC 35 ms
51,960 KB
testcase_08 AC 36 ms
52,736 KB
testcase_09 AC 36 ms
52,888 KB
testcase_10 AC 35 ms
52,560 KB
testcase_11 AC 34 ms
53,820 KB
testcase_12 AC 34 ms
53,248 KB
testcase_13 AC 163 ms
158,016 KB
testcase_14 AC 108 ms
109,828 KB
testcase_15 AC 173 ms
167,760 KB
testcase_16 AC 168 ms
168,212 KB
testcase_17 AC 138 ms
116,700 KB
testcase_18 AC 132 ms
111,348 KB
testcase_19 AC 122 ms
135,680 KB
testcase_20 AC 125 ms
136,328 KB
testcase_21 AC 179 ms
162,392 KB
testcase_22 AC 57 ms
78,336 KB
testcase_23 AC 141 ms
135,452 KB
testcase_24 AC 81 ms
98,688 KB
testcase_25 AC 54 ms
74,496 KB
testcase_26 AC 153 ms
146,560 KB
testcase_27 AC 56 ms
76,576 KB
testcase_28 AC 58 ms
75,904 KB
testcase_29 AC 79 ms
97,664 KB
testcase_30 AC 67 ms
83,328 KB
testcase_31 AC 140 ms
135,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
if M & 1:
    print(0)
    exit()
SA = set(A)
MH = M // 2
cnt = 0
for i in range(N):
    if A[i] + MH in SA:
        cnt += 1
print(cnt * (N - 2))
0