結果

問題 No.2517 Right Triangles on Circle
ユーザー timitimi
提出日時 2023-10-28 18:20:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 169,568 KB
最終ジャッジ日時 2024-09-25 16:32:14
合計ジャッジ時間 4,261 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,400 KB
testcase_01 AC 36 ms
52,468 KB
testcase_02 AC 37 ms
51,996 KB
testcase_03 AC 37 ms
53,288 KB
testcase_04 AC 35 ms
53,068 KB
testcase_05 AC 37 ms
52,276 KB
testcase_06 AC 37 ms
52,276 KB
testcase_07 AC 37 ms
52,524 KB
testcase_08 AC 37 ms
52,688 KB
testcase_09 AC 36 ms
53,068 KB
testcase_10 AC 36 ms
52,864 KB
testcase_11 AC 36 ms
52,124 KB
testcase_12 AC 35 ms
52,084 KB
testcase_13 AC 183 ms
159,264 KB
testcase_14 AC 171 ms
159,220 KB
testcase_15 AC 182 ms
169,568 KB
testcase_16 AC 183 ms
168,824 KB
testcase_17 AC 149 ms
117,708 KB
testcase_18 AC 141 ms
113,384 KB
testcase_19 AC 128 ms
136,816 KB
testcase_20 AC 134 ms
138,692 KB
testcase_21 AC 183 ms
163,496 KB
testcase_22 AC 80 ms
94,320 KB
testcase_23 AC 146 ms
136,496 KB
testcase_24 AC 85 ms
100,092 KB
testcase_25 AC 68 ms
88,140 KB
testcase_26 AC 166 ms
147,396 KB
testcase_27 AC 72 ms
92,528 KB
testcase_28 AC 61 ms
77,648 KB
testcase_29 AC 84 ms
98,812 KB
testcase_30 AC 68 ms
85,548 KB
testcase_31 AC 150 ms
136,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
A=list(map(int, input().split()))
D={}
for a in A:
  a*=2
  D[a]=1
  
ans=0
for a in A:
  a*=2
  if a+M in D:
    ans+=(N-2)
print(ans)
0