結果

問題 No.2517 Right Triangles on Circle
ユーザー なえしらなえしら
提出日時 2024-04-21 14:39:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 145,948 KB
最終ジャッジ日時 2024-10-13 13:25:56
合計ジャッジ時間 5,456 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
52,068 KB
testcase_04 AC 43 ms
52,224 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 38 ms
51,712 KB
testcase_12 AC 37 ms
51,700 KB
testcase_13 AC 158 ms
136,272 KB
testcase_14 AC 138 ms
135,784 KB
testcase_15 AC 173 ms
145,940 KB
testcase_16 AC 172 ms
145,948 KB
testcase_17 AC 137 ms
136,644 KB
testcase_18 AC 129 ms
129,152 KB
testcase_19 AC 116 ms
121,216 KB
testcase_20 AC 118 ms
121,984 KB
testcase_21 AC 168 ms
140,316 KB
testcase_22 AC 72 ms
86,016 KB
testcase_23 AC 148 ms
120,408 KB
testcase_24 AC 85 ms
91,776 KB
testcase_25 AC 67 ms
81,024 KB
testcase_26 AC 163 ms
129,416 KB
testcase_27 AC 72 ms
83,584 KB
testcase_28 AC 63 ms
72,832 KB
testcase_29 AC 82 ms
90,880 KB
testcase_30 AC 70 ms
79,616 KB
testcase_31 AC 148 ms
120,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if M % 2 == 1:
  print(0)
  exit()

M //= 2
ans = 0
for a in A:
  if a + M in A:
    ans += N - 2

print(ans)
0