結果

問題 No.2517 Right Triangles on Circle
ユーザー pitPpitP
提出日時 2023-10-27 21:31:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 168,560 KB
最終ジャッジ日時 2024-09-25 13:34:36
合計ジャッジ時間 4,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,960 KB
testcase_01 AC 37 ms
52,596 KB
testcase_02 AC 38 ms
52,892 KB
testcase_03 AC 36 ms
52,804 KB
testcase_04 AC 39 ms
52,124 KB
testcase_05 AC 36 ms
52,952 KB
testcase_06 AC 36 ms
52,736 KB
testcase_07 AC 36 ms
53,760 KB
testcase_08 AC 36 ms
52,408 KB
testcase_09 AC 37 ms
51,936 KB
testcase_10 AC 36 ms
52,332 KB
testcase_11 AC 37 ms
53,108 KB
testcase_12 AC 37 ms
52,280 KB
testcase_13 AC 160 ms
158,768 KB
testcase_14 AC 111 ms
110,028 KB
testcase_15 AC 169 ms
168,560 KB
testcase_16 AC 170 ms
168,352 KB
testcase_17 AC 143 ms
117,164 KB
testcase_18 AC 132 ms
112,880 KB
testcase_19 AC 119 ms
136,360 KB
testcase_20 AC 129 ms
138,360 KB
testcase_21 AC 172 ms
162,896 KB
testcase_22 AC 56 ms
78,976 KB
testcase_23 AC 143 ms
135,960 KB
testcase_24 AC 82 ms
100,440 KB
testcase_25 AC 54 ms
75,644 KB
testcase_26 AC 157 ms
147,232 KB
testcase_27 AC 57 ms
77,356 KB
testcase_28 AC 59 ms
77,636 KB
testcase_29 AC 79 ms
99,096 KB
testcase_30 AC 67 ms
85,132 KB
testcase_31 AC 143 ms
135,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
if M % 2 :
    exit(print(0))
st = set()
for i in range(N):
    st.add(A[i])

ans = 0
for i in range(N):
    if A[i] + M // 2 in st:
        ans += N - 2
print(ans)
0